根据标签更新多个Pod

时间:2019-03-25 09:27:34

标签: kubernetes label kubernetes-pod kubernetes-deployment

我有以下情况:

除了环境变量之外,我有多个部署运行同一映像,并且配置相同。

现在我的问题是,是否有一种简便的方法来更新所有这些部署的映像,而不是一个一个地进行更新?

我还没有找到解决方案,但是我认为使用标签应该可以实现吗?

还是有更好的方法来仅使用不同的环境变量来部署相同的部署?

1 个答案:

答案 0 :(得分:2)

是的,可以,这就是标签的用途。它们非常适合对相似对象进行分组。 这是最小的可复制示例。
创建两个具有相同标签app=nginx的部署:

$ kubectl run --image=nginx --overrides='{ "metadata": {"labels": {"app": "nginx"}}, "spec":{"template":{"spec": {"containers":[{"name":"nginx-container", "image": "nginx"}]}}}}' nginx-1
deployment.apps/nginx-1 created
$ kubectl run --image=nginx --overrides='{ "metadata": {"labels": {"app": "nginx"}}, "spec":{"template":{"spec": {"containers":[{"name":"nginx-container", "image": "nginx"}]}}}}' nginx-2
deployment.apps/nginx-2 created

这是我们的部署:

$ kubectl get deploy -o wide --show-labels 
NAME      READY   UP-TO-DATE   AVAILABLE   AGE   CONTAINERS        IMAGES   SELECTOR      LABELS
nginx-1   1/1     1            1           20s   nginx-container   nginx    run=nginx-1   app=nginx,run=nginx-1
nginx-2   1/1     1            1           16s   nginx-container   nginx    run=nginx-2   app=nginx,run=nginx-2

然后,我们可以使用set命令并使用标签app=nginx过滤所需的部署:

$ kubectl set image deployment -l app=nginx nginx-container=nginx:alpine
deployment.extensions/nginx-1 image updated
deployment.extensions/nginx-2 image updated

并查看结果:

$ kubectl get deploy -o wide --show-labels
NAME      READY   UP-TO-DATE   AVAILABLE   AGE     CONTAINERS        IMAGES         SELECTOR      LABELS
nginx-1   1/1     1            1           6m49s   nginx-container   nginx:alpine   run=nginx-1   app=nginx,run=nginx-1
nginx-2   1/1     1            1           6m45s   nginx-container   nginx:alpine   run=nginx-2   app=nginx,run=nginx-2