2025-08-24 00:09:37 +03:00

29 lines
881 B
Smarty

{{/* Returns Host Users */}}
{{/* Call this template:
{{ include "tc.v1.common.lib.pod.hostPID" (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.hostUsers" -}}
{{- $rootCtx := .rootCtx -}}
{{- $objectData := .objectData -}}
{{- $hostUsers := false -}}
{{- if $objectData.podSpec.calculatedHostUsers -}}
{{- $hostUsers = true -}}
{{- end -}}
{{/* Override from the "global" option */}}
{{- if (kindIs "bool" $rootCtx.Values.podOptions.hostUsers) -}}
{{- $hostUsers = $rootCtx.Values.podOptions.hostUsers -}}
{{- end -}}
{{/* Override with pods option */}}
{{- if (kindIs "bool" $objectData.podSpec.hostUsers) -}}
{{- $hostUsers = $objectData.podSpec.hostUsers -}}
{{- end -}}
{{- $hostUsers -}}
{{- end -}}