Kafka user is not created.
Name and Version
bitnami/kafka 26.6.2
What architecture are you using?
None
What steps will reproduce the bug?
Kafka user is not created. In chart version 23.0.0, A kafka user was created with the settings as follows.
auth:
clientProtocol: sasl
sasl:
jaas:
clientUsers:
- test1
- test2
- test3
clientPasswords:
- password1
- password2
- password3
In chart version 26.6.2, Even if you set it as below, the kafka user is not created.
sasl:
client:
users:
- test1
- test2
- test3
passwords:
- password1
- password2
- password3
How do I automatically create the kafka user entered in values.yaml?
What is the expected behavior?
test1,test2,test3 uses are searched.
sasl:
client:
users:
- test1
- test2
- test3
passwords:
- password1
- password2
- password3
What do you see instead?
Since the kafka user is not created, I must create kafka user manually.
This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.
Hi @sdYoo
Sorry for the delay.
Indeed, since the new version of the chart this is configured differently, but the feature works correctly.
# Listeners SASL JAAS configuration
listener.name.client.plain.sasl.jaas.config=org.apache.kafka.common.security.plain.PlainLoginModule required user_admin1="test1" user_admin2="test2" user_admin3="test3";
You can check my colleague's comment in this other open ticket.
Thanks for your feedback!
This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.
Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary.