mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 08:37:03 +02:00
42 lines
1.8 KiB
Smarty
42 lines
1.8 KiB
Smarty
{{- /*
|
|
Returns the value for initContainers
|
|
*/ -}}
|
|
{{- define "bjw-s.common.lib.pod.field.initContainers" -}}
|
|
{{- $rootContext := .ctx.rootContext -}}
|
|
{{- $controllerObject := .ctx.controllerObject -}}
|
|
|
|
{{- /* Default to empty list */ -}}
|
|
{{- $orderedContainers := dict -}}
|
|
{{- $containers := list -}}
|
|
|
|
{{- /* Fetch configured containers for this controller */ -}}
|
|
{{- range $key, $containerValues := $controllerObject.initContainers -}}
|
|
{{- /* Enable container by default, but allow override */ -}}
|
|
{{- $containerEnabled := true -}}
|
|
{{- if hasKey $containerValues "enabled" -}}
|
|
{{- $containerEnabled = $containerValues.enabled -}}
|
|
{{- end -}}
|
|
|
|
{{- if $containerEnabled -}}
|
|
{{- /* Create object from the container values */ -}}
|
|
{{- $containerObject := (include "bjw-s.common.lib.container.valuesToObject" (dict "rootContext" $ "id" $key "values" $containerValues)) | fromYaml -}}
|
|
|
|
{{- /* Perform validations on the Container before rendering */ -}}
|
|
{{- include "bjw-s.common.lib.container.validate" (dict "rootContext" $ "controllerObject" $controllerObject "containerObject" $containerObject) -}}
|
|
|
|
{{- /* Generate the Container spec */ -}}
|
|
{{- $renderedContainer := include "bjw-s.common.lib.container.spec" (dict "rootContext" $rootContext "controllerObject" $controllerObject "containerObject" $containerObject) | fromYaml -}}
|
|
|
|
{{- $containerOrder := (dig "order" 99 $containerValues) -}}
|
|
{{- $_ := set $orderedContainers (printf "%v-%s" $containerOrder $key) $renderedContainer -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- range $key, $containerValues := $orderedContainers -}}
|
|
{{- $containers = append $containers $containerValues -}}
|
|
{{- end -}}
|
|
|
|
{{- if not (empty $containers) -}}
|
|
{{- $containers | toYaml -}}
|
|
{{- end -}}
|
|
{{- end -}}
|