helm-charts/charts/library/common/templates/lib/container/_valuesToObject.tpl
Bernd Schorgers 3d3028b889
feat(common): Release v2.4.0 (#245)
Signed-off-by: Christopher Larivière <lariviere.c@gmail.com>
Co-authored-by: Christopher Larivière <lariviere.c@gmail.com>
Co-authored-by: Markus Reiter <me@reitermark.us>
2023-12-10 08:56:08 +00:00

27 lines
838 B
Smarty

{{/*
Convert container values to an object
*/}}
{{- define "bjw-s.common.lib.container.valuesToObject" -}}
{{- $rootContext := .rootContext -}}
{{- $identifier := .id -}}
{{- $objectValues := .values -}}
{{- $_ := set $objectValues "identifier" $identifier -}}
{{- /* Process image tags */ -}}
{{- if kindIs "map" $objectValues.image -}}
{{- $imageTag := dig "image" "tag" "" $objectValues -}}
{{- /* Convert float64 image tags to string */ -}}
{{- if kindIs "float64" $imageTag -}}
{{- $imageTag = $imageTag | toString -}}
{{- end -}}
{{- /* Process any templates in the tag */ -}}
{{- $imageTag = tpl $imageTag $rootContext -}}
{{- $_ := set $objectValues.image "tag" $imageTag -}}
{{- end -}}
{{- /* Return the container object */ -}}
{{- $objectValues | toYaml -}}
{{- end -}}