Skip to content

Commit

Permalink
1.1.14: update external-secrets tpl
Browse files Browse the repository at this point in the history
  • Loading branch information
alexremn committed May 30, 2024
1 parent 0518a3e commit 56fb6f0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/default-templates/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: '1.1.13'
version: '1.1.13'
appVersion: '1.1.14'
version: '1.1.14'
name: default-templates
description: Default templates chart
icon: https://hub.docker.com/public/images/logos/mini-logo.svg
Expand Down
10 changes: 6 additions & 4 deletions charts/default-templates/templates/_secret.external.multi.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ spec:
creationPolicy: Owner
name: {{ $secret }}
data:
{{- range $key, $value := $val }}
- secretKey: {{ $key }}
{{- range $key, $secrets := $val }}
{{- range $secrets }}
- secretKey: {{ . }}
remoteRef:
key: {{ $value }}
property: {{ $key }}
key: {{ $key }}
property: {{ . }}
{{- end }}
{{- end }}
---
{{- end }}
Expand Down

0 comments on commit 56fb6f0

Please sign in to comment.