my-apps/charts/common/templates/lib/pod/_restartPolicy.tpl
2025-08-24 00:09:37 +03:00

45 lines
1.6 KiB
Smarty

{{/* Returns Restart Policy */}}
{{/* Call this template:
{{ include "tc.v1.common.lib.pod.restartPolicy" (dict "rootCtx" $ "objectData" $objectData) }}
rootCtx: The root context of the chart.
objectData: The object data to be used to render the Pod.
*/}}
{{- define "tc.v1.common.lib.pod.restartPolicy" -}}
{{- $rootCtx := .rootCtx -}}
{{- $objectData := .objectData -}}
{{- $policy := "Always" -}}
{{- $jobTypes := (list "Job" "CronJob") -}}
{{- if mustHas $objectData.type $jobTypes -}}
{{- $policy = "OnFailure" -}}
{{- end -}}
{{/* Initialize from the "defaults" */}}
{{- with $rootCtx.Values.podOptions.restartPolicy -}}
{{- $policy = tpl . $rootCtx -}}
{{- end -}}
{{/* Override from the pod values, if defined */}}
{{- with $objectData.podSpec.restartPolicy -}}
{{- $policy = tpl . $rootCtx -}}
{{- end -}}
{{- $policies := (list "Never" "Always" "OnFailure") -}}
{{- if not (mustHas $policy $policies) -}}
{{- fail (printf "Expected [restartPolicy] to be one of [%s] but got [%s]" (join ", " $policies) $policy) -}}
{{- end -}}
{{- $types := (list "Deployment" "DaemonSet" "StatefulSet") -}}
{{- if and (ne "Always" $policy) (mustHas $objectData.type $types) -}}
{{- fail (printf "Expected [restartPolicy] to be [Always] for [%s] but got [%s]" $objectData.type $policy) -}}
{{- end -}}
{{- if and (eq "Always" $policy) (mustHas $objectData.type $jobTypes) -}}
{{- $cronPolicies := mustWithout $policies "Always" -}}
{{- fail (printf "Expected [restartPolicy] to be one of [%s] for [%s] but got [%s]" (join ", " $cronPolicies) $objectData.type $policy) -}}
{{- end -}}
{{- $policy -}}
{{- end -}}