Let’s discuss the kafka-ui project.
The idea (was born here) is to share your experience so far, your thoughts, and pros and cons which you already noticed!
Let’s discuss the kafka-ui project.
The idea (was born here) is to share your experience so far, your thoughts, and pros and cons which you already noticed!
Recently gave it a try. And this is what I can say:
Features:
Discovered issues:
DescribeConfigs
CLUSTER level ACL or AuditAdmin
RBAC role to start, which are rarely given to end usersWas able to overcome this by providing it with Truststore and Keystore in JVM properties like this (this is an additional environment variable set for the kafka-ui
service in my docker-compose.yml
:
JAVA_OPTS: "-Djavax.net.ssl.keyStore=/path/to/keystore.jks -Djavax.net.ssl.trustStore=/path/to/truststore.jks -Djavax.net.ssl.keyStorePassword=$KEYSTORE_PASSWORD -Djavax.net.ssl.trustStorePassword=$TRUSTSTORE_PASSWORD"
Keystore and Truststore passwords are provided in the .env
file.