helm install: create ns separatly for operator (#9592)

This commit is contained in:
Shamsher Ansari 2021-07-29 11:15:17 +05:30 committed by GitHub
parent 2f3095fd9f
commit 41a7b8e554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 5 deletions

View File

@ -60,11 +60,19 @@ To avoid a vulnerability, ensure that the operator deployment is sufficiently se
{{< tip >}}
You can alternatively deploy the operator using Helm:
{{< text bash >}}
$ helm install istio-operator manifests/charts/istio-operator \
--set operatorNamespace=istio-operator \
--set watchedNamespaces="istio-namespace1\,istio-namespace2"
{{< /text >}}
1. Create a namespace `istio-operator`.
{{< text bash >}}
$ kubectl create namespace istio-operator
{{< /text >}}
1. Install operator using helm.
{{< text bash >}}
$ helm install istio-operator manifests/charts/istio-operator \
--set watchedNamespaces="istio-namespace1\,istio-namespace2" \
-n istio-operator
{{< /text >}}
{{< boilerplate helm-hub-tag >}}