我已经使用 EKS https://github.com/kubernetes/examples/tree/master/guestbook-go为 guestbook-go 应用程序配置了集群
并按照官方教程 https://docs.aws.amazon.com/eks/latest/userguide/getting-started.html
假设我要修改public/index.html
文件。在 Docker 文件中,我可以看到该文件已复制到容器中:
COPY ./public/index.html public/index.html
在guestbook-controller.json
我可以看到它被使用的图像:
"image":"k8s.gcr.io/guestbook:v3",
修改index.html
和部署这个新版本的正确方法是什么?我需要重建这个图像吗?那么在哪里上传它以及如何在 AWS 上使用 kubernetes 工具部署它呢?
非常感谢,作为 Kubernetes 的新手,正在寻找学习它的好步骤