kafka-minion-helm-chart
kafka-minion-helm-chart copied to clipboard
"kafka-minion.tlsSecretName" has the same value as "kafka-minion.saslSecretName"
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 -}}