Skip to content

Commit

Permalink
fix(helm): Use yaml goTemplate for secrets (#751)
Browse files Browse the repository at this point in the history
Co-authored-by: Jean-Christophe Vassort <[email protected]>
  • Loading branch information
2 people authored and tchiotludo committed Oct 24, 2021
1 parent 0fb9bb7 commit 648669b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm/akhq/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
app.kubernetes.io/managed-by: {{ .Release.Service }}
type: Opaque
data:
application-secrets.yml: {{.Values.secrets| b64enc | quote }}
application-secrets.yml: {{ toYaml .Values.secrets | b64enc | quote }}
{{- if .Values.kafkaSecrets }}
{{- range $key, $value := .Values.kafkaSecrets }}
{{ $key }}: {{ $value | quote }}
Expand Down

0 comments on commit 648669b

Please sign in to comment.