diff --git a/content/en/docs/setup/install/operator/index.md b/content/en/docs/setup/install/operator/index.md index 6669a94f16..9cad1f5b45 100644 --- a/content/en/docs/setup/install/operator/index.md +++ b/content/en/docs/setup/install/operator/index.md @@ -260,8 +260,8 @@ You can alternatively use Helm to deploy another operator with a different revis {{< text bash >}} $ helm install istio-operator manifests/charts/istio-operator \ - --set operatorNamespace=istio-operator \ --set watchedNamespaces=istio-system \ + -n istio-operator \ --set revision=1-9-0 {{< /text >}} diff --git a/content/en/docs/setup/install/operator/snips.sh b/content/en/docs/setup/install/operator/snips.sh index 0bb25cbacd..a321b51c96 100644 --- a/content/en/docs/setup/install/operator/snips.sh +++ b/content/en/docs/setup/install/operator/snips.sh @@ -30,8 +30,8 @@ istioctl operator init --watchedNamespaces=istio-namespace1,istio-namespace2 snip_prerequisites_3() { helm install istio-operator manifests/charts/istio-operator \ - --set operatorNamespace=istio-operator \ - --set watchedNamespaces="istio-namespace1\,istio-namespace2" + --set watchedNamespaces="istio-namespace1\,istio-namespace2" \ + -n istio-operator } snip_create_demo_profile() { @@ -145,8 +145,8 @@ istio-1.8.1/bin/istioctl operator init --revision 1-8-1 snip_canary_upgrade_3() { helm install istio-operator manifests/charts/istio-operator \ - --set operatorNamespace=istio-operator \ --set watchedNamespaces=istio-system \ + -n istio-operator \ --set revision=1-9-0 }