From 083ca14899de47e3e6f53fc3a80b4f49c27f91fd Mon Sep 17 00:00:00 2001 From: vinshetty Date: Tue, 11 Jun 2019 12:57:15 +0530 Subject: [PATCH] Node should not be ready status (line 399-400) As still CNI has not configured the node's status will NotReady --- docs/10-tls-bootstrapping-kubernetes-workers.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/10-tls-bootstrapping-kubernetes-workers.md b/docs/10-tls-bootstrapping-kubernetes-workers.md index c9cc451..f84d47c 100644 --- a/docs/10-tls-bootstrapping-kubernetes-workers.md +++ b/docs/10-tls-bootstrapping-kubernetes-workers.md @@ -396,8 +396,9 @@ master-1$ kubectl get nodes --kubeconfig admin.kubeconfig ``` NAME STATUS ROLES AGE VERSION -worker-1 Ready 12h v1.13.0 -worker-2 Ready 37m v1.13.0 +worker-1 NotReady 93s v1.13.0 +worker-2 NotReady 93s v1.13.0 ``` +Note: It is OK for the worker node to be in a NotReady state. That is because we haven't configured Networking yet. Next: [Configuring Kubectl](11-configuring-kubectl.md)