Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Set KAFKA_SASL_ENABLED if SASL enabled #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kafka-minion/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ spec:
- name: KAFKA_CONSUMER_OFFSETS_TOPIC_NAME
value: {{ .Values.kafka.consumerOffsetsTopic | quote }}
{{- if .Values.kafka.sasl.enabled }}
- name: KAFKA_SASL_ENABLED
value: "true"
- name: KAFKA_SASL_MECHANISM
value: {{ .Values.kafka.sasl.mechanism | quote }}
- name: KAFKA_SASL_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion kafka-minion/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: quay.io/google-cloud-tools/kafka-minion
tag: v1.0.0
tag: v1.0.2
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down