Search code examples
kubernetes

My worker node status is Ready,SchedulingDisabled


I have kubernetes cluster and every thing work fine. after some times I drain my worker node and reset it and join it again to master but

#kubectl get nodes
NAME      STATUS                     ROLES    AGE    VERSION
ubuntu    Ready                      master   159m   v1.14.0
ubuntu1   Ready,SchedulingDisabled   <none>   125m   v1.14.0
ubuntu2   Ready,SchedulingDisabled   <none>   96m    v1.14.0

what should i do?


Solution

  • I fixed it using:

    kubectl uncordon <node-name>