blob: c8b9a6e6e77f0c746ad70a0c5a0398e39cd9a790 [file] [log] [blame]
gio20157e82026-07-22 13:10:48 +04001{{- if .Values.extraObjects -}}
2 {{- $extraObjects := .Values.extraObjects -}}
3
4 {{- if kindIs "map" $extraObjects -}}
5 {{- $extraObjects = values $extraObjects -}}
6 {{- end -}}
7
8 {{- range $index, $object := $extraObjects -}}
9 {{- if $object }}
10---
11 {{- if kindIs "string" $object -}}
12 {{- tpl $object $ | nindent 0 -}}
13 {{- else -}}
14 {{- tpl (toYaml $object) $ | nindent 0 -}}
15 {{- end -}}
16 {{- end -}}
17 {{- end -}}
18{{- end -}}