不同与deployment,可以通过设置副本为0来实现临时删除pod,daemonset如何暂停和恢复呢?
如果你不想删除daemonset,一个可能的变通方法是使用不存在的临时标签nodeSelector,比如说:
kubectl -n <namespace> patch daemonset <name-of-daemon-set> -p '{"spec": {"template": {"spec": {"nodeSelector": {"non-existing": "true"}}}}}'
缩减daemonset的规模为0。
删除临时nodeSelector来恢复:
kubectl -n <namespace> patch daemonset <name-of-daemon-set> --type json -p='[{"op": "remove", "path": "/spec/template/spec/nodeSelector/non-existing"}]'
这样就恢复原来的规模了。
命令可参考:Kubernetes定向调度nodeSelector
找不到想要的答案?提一个您自己的问题。
0 声望
这家伙太懒,什么都没留下
如果你不想删除daemonset,一个可能的变通方法是使用不存在的临时标签nodeSelector,比如说:
kubectl -n <namespace> patch daemonset <name-of-daemon-set> -p '{"spec": {"template": {"spec": {"nodeSelector": {"non-existing": "true"}}}}}'
缩减daemonset的规模为0。
删除临时nodeSelector来恢复:
kubectl -n <namespace> patch daemonset <name-of-daemon-set> --type json -p='[{"op": "remove", "path": "/spec/template/spec/nodeSelector/non-existing"}]'
这样就恢复原来的规模了。
命令可参考:Kubernetes定向调度nodeSelector
你的答案