k8s/helm-charts/dashy/charts/common/templates/spawner/_serviceAccount.tpl

40 lines
1.3 KiB
Smarty
Raw Normal View History

2023-11-16 19:42:02 +10:00
{{/* Service Account Spawner */}}
{{/* Call this template:
{{ include "tc.v1.common.spawner.serviceAccount" $ -}}
*/}}
{{- define "tc.v1.common.spawner.serviceAccount" -}}
{{- $fullname := include "tc.v1.common.lib.chart.names.fullname" $ -}}
{{/* Primary validation for enabled service accounts. */}}
{{- include "tc.v1.common.lib.serviceAccount.primaryValidation" $ -}}
{{- range $name, $serviceAccount := .Values.serviceAccount -}}
{{- if $serviceAccount.enabled -}}
{{/* Create a copy of the configmap */}}
{{- $objectData := (mustDeepCopy $serviceAccount) -}}
{{- $objectName := $fullname -}}
{{- if not $objectData.primary -}}
{{- $objectName = (printf "%s-%s" $fullname $name) -}}
{{- end -}}
{{/* Perform validations */}}
{{- include "tc.v1.common.lib.chart.names.validation" (dict "name" $objectName) -}}
{{- include "tc.v1.common.lib.metadata.validation" (dict "objectData" $objectData "caller" "Service Account") -}}
{{/* Set the name of the service account */}}
{{- $_ := set $objectData "name" $objectName -}}
{{- $_ := set $objectData "shortName" $name -}}
{{/* Call class to create the object */}}
{{- include "tc.v1.common.class.serviceAccount" (dict "rootCtx" $ "objectData" $objectData) -}}
{{- end -}}
{{- end -}}
{{- end -}}