| gio | 20157e8 | 2026-07-22 13:10:48 +0400 | [diff] [blame^] | 1 | {{- 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 -}} | ||||