38 lines
1.6 KiB
Smarty
38 lines
1.6 KiB
Smarty
{{/* Returns lifecycle */}}
|
|
{{/* Call this template:
|
|
{{ include "tc.v1.common.lib.container.lifecycle" (dict "rootCtx" $ "objectData" $objectData) }}
|
|
rootCtx: The root context of the chart.
|
|
objectData: The object data to be used to render the container.
|
|
*/}}
|
|
{{- define "tc.v1.common.lib.container.lifecycle" -}}
|
|
{{- $rootCtx := .rootCtx -}}
|
|
{{- $objectData := .objectData -}}
|
|
|
|
{{- $hooks := (list "preStop" "postStart") -}}
|
|
{{- $types := (list "exec" "http" "https") -}}
|
|
{{- with $objectData.lifecycle -}}
|
|
{{- range $hook, $hookValues := . -}}
|
|
{{- if not (mustHas $hook $hooks) -}}
|
|
{{- fail (printf "Container - Expected <lifecycle> <hook> to be one of [%s], but got [%s]" (join ", " $hooks) $hook) -}}
|
|
{{- end -}}
|
|
|
|
{{- if not $hookValues.type -}}
|
|
{{- fail "Container - Expected non-empty <lifecycle> <type>" -}}
|
|
{{- end -}}
|
|
|
|
{{- if not (mustHas $hookValues.type $types) -}}
|
|
{{- fail (printf "Container - Expected <lifecycle> <type> to be one of [%s], but got [%s]" (join ", " $types) $hookValues.type) -}}
|
|
{{- end }}
|
|
{{ $hook }}:
|
|
{{- if eq $hookValues.type "exec" -}}
|
|
{{- include "tc.v1.common.lib.container.actions.exec" (dict "rootCtx" $rootCtx "objectData" $hookValues "caller" "lifecycle") | trim | nindent 2 -}}
|
|
{{- else if mustHas $hookValues.type (list "http" "https") -}}
|
|
{{- include "tc.v1.common.lib.container.actions.httpGet" (dict "rootCtx" $rootCtx "objectData" $hookValues "caller" "lifecycle") | trim | nindent 2 -}}
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
|
|
{{- end -}}
|