From 8d2c76f79e1bf88e0ec95a8f23dc246590f72b92 Mon Sep 17 00:00:00 2001 From: Guangya Liu Date: Mon, 7 May 2018 10:40:29 +0800 Subject: [PATCH 1/2] Create istio namespace before install remote cluster. --- _docs/setup/kubernetes/multicluster-install.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_docs/setup/kubernetes/multicluster-install.md b/_docs/setup/kubernetes/multicluster-install.md index 1067fb4dd6e8e..26c3fc3d069ab 100644 --- a/_docs/setup/kubernetes/multicluster-install.md +++ b/_docs/setup/kubernetes/multicluster-install.md @@ -147,6 +147,10 @@ $ export STATSD_POD_IP=$(kubectl -n istio-system get pod -l istio=statsd-prom-br $ helm template install/kubernetes/helm/istio-remote --name istio-remote --set global.pilotEndpoint=${PILOT_POD_IP} --set global.policyEndpoint=${POLICY_POD_IP} --set global.statsdEndpoint=${STATSD_POD_IP} > $HOME/istio-remote.yaml ``` +1. Create a namespace for remote istio. + ```command + $ kubectl create ns istio-system + ``` 1. Instantiate the remote cluster's connection to the Istio control plane: ```command From 6e36e7655352e7c5e131fe03290663a7e00eb5ae Mon Sep 17 00:00:00 2001 From: Martin Taillefer Date: Wed, 9 May 2018 08:57:47 -0700 Subject: [PATCH 2/2] Update multicluster-install.md --- _docs/setup/kubernetes/multicluster-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_docs/setup/kubernetes/multicluster-install.md b/_docs/setup/kubernetes/multicluster-install.md index 26c3fc3d069ab..ecb0f9635568e 100644 --- a/_docs/setup/kubernetes/multicluster-install.md +++ b/_docs/setup/kubernetes/multicluster-install.md @@ -147,7 +147,7 @@ $ export STATSD_POD_IP=$(kubectl -n istio-system get pod -l istio=statsd-prom-br $ helm template install/kubernetes/helm/istio-remote --name istio-remote --set global.pilotEndpoint=${PILOT_POD_IP} --set global.policyEndpoint=${POLICY_POD_IP} --set global.statsdEndpoint=${STATSD_POD_IP} > $HOME/istio-remote.yaml ``` -1. Create a namespace for remote istio. +1. Create a namespace for remote Istio. ```command $ kubectl create ns istio-system ```