Skip to content

Commit

Permalink
secret.yaml: always quote string
Browse files Browse the repository at this point in the history
  • Loading branch information
lyind committed Oct 16, 2023
1 parent 4267d32 commit 0232db4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Fix secret string quoting

## [0.10.3] - 2023-10-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion helm/handbook/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
{{- include "labels.common" $this | nindent 4 }}
data:
{{- range $idx, $datum := $secret.data }}
{{ $datum.key }}: {{ $datum.value }}
{{ $datum.key }}: {{ $datum.value | quote }}
{{- end }}
---
{{ end }}

0 comments on commit 0232db4

Please sign in to comment.