-
I have installed strimzi 0.20.1 with the supplied helm chart values (https://github.com/strimzi/strimzi-kafka-operator/blob/0.20.1/helm-charts/helm3/strimzi-kafka-operator/values.yaml) and changed watchAnyNamespace: false, to true. I can create the user in the same namespace strimzi is running, and it creates a secret from it and the user operator logs show it has seen and created the resources. Kafka user yaml:
strimzi helm values yaml:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The Helm Chart deploys the so called Cluster Operator (CO). CO operates all of the resources apart from And even once you do it, the Topic and User operators (at least right now) operate on only one namespace. It is by default the same namespace in which the Kafka cluster is deployed or you can configure another namespace. But it will be always one. The reason is that Kafka does not have any concept of namespaces, so having the users or topics work across multiple namespaces is relatively complex and complicated. |
Beta Was this translation helpful? Give feedback.
The Helm Chart deploys the so called Cluster Operator (CO). CO operates all of the resources apart from
KafkaUser
andKafkaTopic
. When deploying the Kafka cluster using theKafka
resource, you can deploy the User and Topic Operator as part of the Kafka cluster and only then you can use theKafkaUser
andKafkaTopic
resources. So if you haven't done it, you cannot really use them since there is nobody to operate them yet.And even once you do it, the Topic and User operators (at least right now) operate on only one namespace. It is by default the same namespace in which the Kafka cluster is deployed or you can configure another namespace. But it will be always one. The reason is that Kafka …