Reputation: 26142
kubectl get nodes
all nodes status NotReady.
What is the actions should I take to diagnose and fix the issue?
I tried kubectl drain
status changed to NotReady,SchedulingDisabled
and then kubectl uncordoned
changed back to NotReady.
Master version 1.4.6
Upvotes: 1
Views: 729
Reputation: 5182
I you run kubectl get nodes
you'll get the nodes ids.
Then usually, you may find relevant infos about such problems by running kubectl describe node node_id
(node_id
being the one you've seen listed by the previous command)
Upvotes: 1