From c4cb78ba560d1d9499096ff0c6b90070d4c0933a Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Sun, 16 Jun 2019 19:53:30 +1000 Subject: [PATCH] Node should be in NotReady status (Line 62-63) Nodes will come into ready state once networking is configured --- docs/11-configuring-kubectl.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/11-configuring-kubectl.md b/docs/11-configuring-kubectl.md index fe3f7c0..856c659 100644 --- a/docs/11-configuring-kubectl.md +++ b/docs/11-configuring-kubectl.md @@ -59,8 +59,9 @@ kubectl get nodes ``` NAME STATUS ROLES AGE VERSION -worker-1 Ready 118s v1.13.0 -worker-2 Ready 118s v1.13.0 +worker-1 NotReady 118s v1.13.0 +worker-2 NotReady 118s v1.13.0 ``` +Note: It is OK for the worker node to be in a `NotReady` state. Worker nodes will come into `Ready` state once networking is configured. Next: [Deploy Pod Networking](12-configure-pod-networking.md)