Skip to content

Commit

Permalink
Merge pull request #106 from MediaMarktSaturn/mhaxp-patch-1
Browse files Browse the repository at this point in the history
Update k8s-secret.yaml for multiline keys
  • Loading branch information
heubeck committed Mar 14, 2024
2 parents 8c00967 + 1da9b9e commit dc1114f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/application/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ maintainers:
- name: MediaMarktSaturn
url: https://github.com/MediaMarktSaturn
appVersion: 1.0.0
version: 1.14.0
version: 1.14.1
6 changes: 4 additions & 2 deletions charts/application/templates/k8s-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ metadata:
{{- if .Values.encryptedSecret.data }}
data:
{{- range $k, $v := .Values.encryptedSecret.data }}
{{ $k }}: {{ $v }}
{{ $k }}: |-
{{ $v | indent 6 }}
{{- end }}
{{- end }}
{{- if .Values.encryptedSecret.stringData }}
stringData:
{{- range $k, $v := .Values.encryptedSecret.stringData }}
{{ $k }}: {{ $v }}
{{ $k }}: |-
{{ $v | indent 6 }}
{{- end }}
{{- end }}

Expand Down

0 comments on commit dc1114f

Please sign in to comment.