Fix Helm install and upgrade commands for istio-operator (#10570)

- Use namespace for Helm istio-operator commands.
This commit is contained in:
Kenan O'Neal 2021-12-07 08:06:05 +07:00 committed by GitHub
parent 163eb3a959
commit 51291ca691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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 >}}

View File

@ -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
}