From 6b151435da45a837d31f806705b6949a34f90d64 Mon Sep 17 00:00:00 2001 From: ahawtho Date: Wed, 16 Nov 2016 21:58:17 -0500 Subject: [PATCH] Fix shell example in sharing-clusters.md 'export' command should not include dollar signs in variable declaration --- docs/user-guide/sharing-clusters.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/sharing-clusters.md b/docs/user-guide/sharing-clusters.md index 34a53d670e..723f54fa14 100644 --- a/docs/user-guide/sharing-clusters.md +++ b/docs/user-guide/sharing-clusters.md @@ -115,12 +115,12 @@ make all four clusters available on both hosts by running # on host2, copy host1's default kubeconfig, and merge it from env $ scp host1:/path/to/home1/.kube/config /path/to/other/.kube/config -$ export $KUBECONFIG=/path/to/other/.kube/config +$ export KUBECONFIG=/path/to/other/.kube/config # on host1, copy host2's default kubeconfig and merge it from env $ scp host2:/path/to/home2/.kube/config /path/to/other/.kube/config -$ export $KUBECONFIG=/path/to/other/.kube/config +$ export KUBECONFIG=/path/to/other/.kube/config ``` Detailed examples and explanation of `kubeconfig` loading/merging rules can be found in [kubeconfig-file](/docs/user-guide/kubeconfig-file).