Configuring Strimzi Cluster Operator watched namespaces
By default, the Strimzi Cluster Operator watches and manages the Kafka clusters that are deployed in the same namespace as the Strimzi Cluster Operator. However, you can configure it to watch selected namespaces or watch all namespaces. This allows you to manage multiple Kafka clusters deployed in different namespaces using a single Strimzi Cluster Operator installation.
If you have a specific list of namespaces that you want the Strimzi Cluster Operator
to watch, specify them in the
watchNamespaces
property. Delimit
each namespace with a
comma.helm upgrade [***RELEASE***] [***CHART***] \
--namespace [***NAMESPACE***] \
--set 'watchNamespaces={[***NAMESPACE A***],[***NAMESPACE B***]}' \
--reuse-values
If you want the Strimzi Cluster Operator to watch all namespaces in your cluster, set
watchAnyNamespace
to
true
.helm upgrade [***RELEASE***] [***CHART***] \
--namespace [***NAMESPACE***] \
--set 'watchAnyNamespace=true' \
--reuse-values