- 在k8s-master1上允许在所有master节点上发布应用
kubectl taint nodes --all node-role.kubernetes.io/master-
- 在k8s-master1上禁止在所有master节点上发布应用
kubectl patch node k8s-master1 -p '{"spec":{"unschedulable":true}}'
kubectl taint nodes --all node-role.kubernetes.io/master-
kubectl patch node k8s-master1 -p '{"spec":{"unschedulable":true}}'