UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 1e2f442c authored by Michael Martin's avatar Michael Martin
Browse files

Merge branch 'fixing-the-wrapper' into 'master'

fixing the wrapper if you don't have any values

See merge request !5162
parents 4fe621cb 19a1e59f
No related branches found
No related tags found
1 merge request!5162fixing the wrapper if you don't have any values
Pipeline #3641674 passed
......@@ -23,7 +23,9 @@ stringData:
values.yaml: |
bigbang:
{{- include "values-bigbang" $.Values | nindent 6 }}
{{- tpl (toYaml $vals.values) $ | nindent 4 }}
{{- if $vals.values -}}
{{- tpl (toYaml $vals.values) $ | nindent 4 }}
{{- end }}
{{ else }}
{{- tpl (toYaml $vals.values) $ | nindent 2 }}
{{ end }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment