Skip to content

Commit

Permalink
- fix helm chart to support double-quotes in db-migration files (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
romanwozniak authored Aug 2, 2021
1 parent 01d3203 commit 1412e85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chart/templates/configmap-db-migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ metadata:
data:
{{- $root := . }}
{{ range $path, $_ := .Files.Glob "db-migrations/*.sql" }}
{{ base $path }}: "{{ $root.Files.Get $path }}"
{{ base $path | indent 2 }}: |-
{{ $root.Files.Get $path | indent 4}}
{{- end }}

0 comments on commit 1412e85

Please sign in to comment.