strimzi / strimzi-kafka-operator

Apache Kafka® running on Kubernetes
https://strimzi.io/
Apache License 2.0
4.78k stars 1.28k forks source link

[Question] Allow all kafkausers describe on topic * #3056

Closed MBarendregt closed 4 years ago

MBarendregt commented 4 years ago

Hello,

I was wondering if it would be possible to give all kafkausers the describe permission on topic * I know you can do something on the broker itself like:

bin/kafka-acls.sh --authorizer-properties zookeeper.connect=localhost:2181 --add --allow-principal User:* --operation Describe --topic *

but is there a way to configure this in the helm chart? Thanks

scholzj commented 4 years ago

No, that is not possible. Kafka doesn't have any options to pre-configure anything like that. So you need to configur eit after deploying the Kafka broker.

MBarendregt commented 4 years ago

Allright, thanks for the quick reply :)