kafka-minion-helm-chart icon indicating copy to clipboard operation
kafka-minion-helm-chart copied to clipboard

"kafka-minion.tlsSecretName" has the same value as "kafka-minion.saslSecretName"

Open jchomat opened this issue 5 years ago • 0 comments

Hello,

Can you fix the helpers.tpl file please ?

{{/* Create the name for the TLS credentials secret. */}} {{- define "kafka-minion.tlsSecretName" -}} {{- if .Values.kafka.tls.existingSecret -}} {{- .Values.kafka.tls.existingSecret -}} {{- else -}} {{- template "kafka-minion.fullname" . -}}-sasl {{- end -}} {{- end -}}

instead of :

{{/* Create the name for the TLS credentials secret. */}} {{- define "kafka-minion.tlsSecretName" -}} {{- if .Values.kafka.tls.existingSecret -}} {{- .Values.kafka.tls.existingSecret -}} {{- else -}} {{- template "kafka-minion.fullname" . -}}-tls {{- end -}} {{- end -}}

jchomat avatar Dec 04 '19 09:12 jchomat