-
Hi! I want to use strimzi to deploy Kafka in K8s. What is the best way to deal with this situation? Is it possible to use admin API with strimzi? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
If you want to manager users, their ACLs or topics your self, you should disable the User / Topic operators. You can do so by removing the |
Beta Was this translation helpful? Give feedback.
If you want to manager users, their ACLs or topics your self, you should disable the User / Topic operators. You can do so by removing the
userOperator
/topicOperator
(or the wholeentityOperator
) sections from theKafka
custom resource and they will not be used. Then it is just up to you to manage the things with the Kafka Admin API.