From 64cb7396c634dcdd49701a4aa9e189aa734498bf Mon Sep 17 00:00:00 2001 From: Raffaele Di Fazio Date: Tue, 17 Apr 2018 13:23:53 +0200 Subject: [PATCH 1/2] Fixes environment variable export. --- docs/networking.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/networking.md b/docs/networking.md index 1d3b8415a1e16..5a25287bc9019 100644 --- a/docs/networking.md +++ b/docs/networking.md @@ -71,7 +71,7 @@ The `--networking` option accepts the three different values defined above: `kub The following command sets up a cluster, in HA mode, that is ready for a CNI installation. ```console -$ export $ZONE=mylistofzones +$ export ZONE=mylistofzones $ kops create cluster \ --zones $ZONES \ --master-zones $ZONES \ @@ -117,7 +117,7 @@ spec: The following command sets up a cluster, in HA mode, with Calico as the CNI and Network Policy provider. ```console -$ export $ZONES=mylistofzones +$ export ZONES=mylistofzones $ kops create cluster \ --zones $ZONES \ --master-zones $ZONES \ @@ -208,7 +208,7 @@ Canal is a project that combines [Flannel](https://github.com/coreos/flannel) an The following command sets up a cluster, in HA mode, with Canal as the CNI and networking policy provider ```console -$ export $ZONES=mylistofzones +$ export ZONES=mylistofzones $ kops create cluster \ --zones $ZONES \ --master-zones $ZONES \ @@ -268,7 +268,7 @@ No additional configurations are required to be done by user. Kube-router automa The following command sets up a cluster with Romana as the CNI. ```console -$ export $ZONES=mylistofzones +$ export ZONES=mylistofzones $ kops create cluster \ --zones $ZONES \ --master-zones $ZONES \ From c52d6cd1c16324ffc8c929c7dc4241892da00009 Mon Sep 17 00:00:00 2001 From: Raffaele Di Fazio Date: Tue, 17 Apr 2018 13:28:31 +0200 Subject: [PATCH 2/2] Fix additional typo (ZONE -> ZONES) --- docs/networking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/networking.md b/docs/networking.md index 5a25287bc9019..be4298f062bd2 100644 --- a/docs/networking.md +++ b/docs/networking.md @@ -71,7 +71,7 @@ The `--networking` option accepts the three different values defined above: `kub The following command sets up a cluster, in HA mode, that is ready for a CNI installation. ```console -$ export ZONE=mylistofzones +$ export ZONES=mylistofzones $ kops create cluster \ --zones $ZONES \ --master-zones $ZONES \