charts icon indicating copy to clipboard operation
charts copied to clipboard

Kafka user is not created.

Open sdYoo opened this issue 2 years ago • 2 comments

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.

sdYoo avatar Feb 01 '24 04:02 sdYoo

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.

github-actions[bot] avatar Feb 17 '24 01:02 github-actions[bot]

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!

CeliaGMqrz avatar Feb 19 '24 09:02 CeliaGMqrz

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.

github-actions[bot] avatar Mar 06 '24 01:03 github-actions[bot]

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.

github-actions[bot] avatar Mar 11 '24 01:03 github-actions[bot]