k8s集群中更改容器的镜像
时间: 2024-01-04 14:04:20 浏览: 143
手把手打镜像并运行到k8s容器上(亲测可用)
5星 · 资源好评率100%
可以通过以下步骤在Kubernetes集群中更改容器的镜像:
1. 通过 `kubectl get pods` 命令查看正在运行的Pod列表。
2. 找到需要更改镜像的Pod,通过 `kubectl describe pod <pod-name>` 命令查看该Pod的详细信息。
3. 在Pod的详细信息中找到需要更改镜像的容器的名称。
4. 通过 `kubectl set image <pod-name> <container-name>=<new-image>` 命令更改容器镜像。例如,如果要将名为 `my-container` 的容器的镜像更改为 `nginx:latest`,则可以运行以下命令:`kubectl set image my-pod my-container=nginx:latest`
5. 使用 `kubectl get pods` 命令确认Pod是否已经更新为新的容器镜像。
阅读全文