In my Kubernetes Dashboard i see, that one node has the Label
node-role.kubernetes.io/master:
The result is, that all my pods are deployed on the cluster except this node. ( When i increase the replica no pod will be deployed on the master node) How can i remove the label, i tried the Kubernetes Trouble Shooting Guide
Following commands did not succeed
kubectl taint nodes --all node-role.kubernetes.io/master:-
kubectl taint nodes --all node-role.kubernetes.io/master-
kubectl taint nodes --all node-role.kubernetes.io/master:NoSchedule-
both of them resulted in the message (snip)
taint "node-role.kubernetes.io/master:" not found
taint "node-role.kubernetes.io/master:" not found
taint "node-role.kubernetes.io/master:NoSchedule" not found
Expected output should be:
- Pods should be deployed on each of the nodes (including the Master)
My Version is v1.14.1
kubectl taint nodes <node1> <key>:NoSchedule-
– Eben