-
I would like to enable auth on a Strimzi Cluster ( testing out with latest version 0.32). We have our own tooling to create Kafka Users and share secrets. The one KafkaUser I created for the admin aside, any other user that we create via our own tooling gets deleted by the UserOperator.
I was looking at the UserOperator code, but its not apparent to me there is a way to avoid this situation. With the topicOperator I've encountered exactly what we need -- we create the topics and the reconciler adds the KafkaTopic resources. Any suggestions much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yes, that is exactly how it was designed to work. The If you want to use your own tooling for managing users, that is fine - you can simply disable the User Operator by removing the User Operator section from the Kafka custom resource. |
Beta Was this translation helpful? Give feedback.
Yes, that is exactly how it was designed to work. The
KafkaUser
resources are the single source of truth -> so when a user doesn't exist there, it should not exist in Kafka either.If you want to use your own tooling for managing users, that is fine - you can simply disable the User Operator by removing the User Operator section from the Kafka custom resource.