UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Verified Commit 19a1e59f authored by Andrew Shoell's avatar Andrew Shoell
Browse files

fixing the wrapper if you don't have any values

parent c51f48e2
No related branches found
No related tags found
1 merge request!5162fixing the wrapper if you don't have any values
Pipeline #3636781 passed with warnings
......@@ -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