mirror of https://github.com/istio/istio.io.git
helm install: create ns separatly for operator (#9592)
This commit is contained in:
parent
2f3095fd9f
commit
41a7b8e554
|
@ -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 >}}
|
||||
|
||||
|
|
Loading…
Reference in New Issue