如果你不想删除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"}]'
这样就恢复原来的规模了。