WHITECOLOR
WHITECOLOR

Reputation: 26142

GCE cluster all nodes NotReady

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

Answers (1)

Ben
Ben

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_idbeing the one you've seen listed by the previous command)

Upvotes: 1

Related Questions