k8s/helm-charts/dashy/charts/common/templates/lib/pod/_enableServiceLinks.tpl

25 lines
886 B
Smarty
Raw Normal View History

2023-11-16 19:42:02 +10:00
{{/* Returns enableServiceLinks */}}
{{/* Call this template:
{{ include "tc.v1.common.lib.pod.enableServiceLinks" (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.enableServiceLinks" -}}
{{- $rootCtx := .rootCtx -}}
{{- $objectData := .objectData -}}
{{- $enableServiceLinks := false -}}
{{/* Initialize from the "global" option */}}
{{- if (kindIs "bool" $rootCtx.Values.podOptions.enableServiceLinks) -}}
{{- $enableServiceLinks = $rootCtx.Values.podOptions.enableServiceLinks -}}
{{- end -}}
{{/* Override with pod's option */}}
{{- if (kindIs "bool" $objectData.podSpec.enableServiceLinks) -}}
{{- $enableServiceLinks = $objectData.podSpec.enableServiceLinks -}}
{{- end -}}
{{- $enableServiceLinks -}}
{{- end -}}