-
Notifications
You must be signed in to change notification settings - Fork 67
feat: kafka support custom sasl #2259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
b4db431
3444817
ecf73e7
aeba2cb
d0901cb
5c09e64
5b9334b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| {{- if and (.Values.sasl.enable) .Values.sasl.useKBBuildInSasl }} | ||
| apiVersion: v1 | ||
| kind: Secret | ||
| metadata: | ||
| name: {{ include "kafka-broker-accounts-secret-name" . }} | ||
| labels: | ||
| app.kubernetes.io/name: {{ include "kblib.clusterName" . }} | ||
caiq1nyu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| app.kubernetes.io/component: {{ include "kafka-broker-component" . }} | ||
| type: Opaque | ||
| stringData: | ||
| # accounts: | | ||
| # [mechanism=PLAIN] format: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would it be better to set accounts through helm values
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. custom accounts are generally not created during cluster first create; addon users need to add or modify this secret during use. |
||
| # {accountName}:{md5Password} | ||
| accounts: "" | ||
| {{- end }} | ||
Uh oh!
There was an error while loading. Please reload this page.