From 9ddca7a62dc09eb1348b9ea28bcfa1313eec19fe Mon Sep 17 00:00:00 2001 From: Luca Zecca Date: Tue, 19 Nov 2019 11:31:48 +0100 Subject: [PATCH] added reference doc for kubectl config --- docs/11-configuring-kubectl.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/11-configuring-kubectl.md b/docs/11-configuring-kubectl.md index 856c659..1d3770a 100644 --- a/docs/11-configuring-kubectl.md +++ b/docs/11-configuring-kubectl.md @@ -29,6 +29,8 @@ Generate a kubeconfig file suitable for authenticating as the `admin` user: kubectl config use-context kubernetes-the-hard-way } + +Reference doc for kubectl config [here](https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/) ``` ## Verification @@ -62,6 +64,7 @@ NAME STATUS ROLES AGE VERSION 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)