1234567891011121314151617181920212223242526272829303132333435363738 |
- {{/* Service Account Spawner */}}
- {{/* Call this template:
- {{ include "ix.v1.common.spawner.serviceAccount" $ -}}
- */}}
- {{- define "ix.v1.common.spawner.serviceAccount" -}}
- {{/* Primary validation for enabled service accounts. */}}
- {{- include "ix.v1.common.lib.serviceAccount.primaryValidation" $ -}}
- {{- range $name, $serviceAccount := .Values.serviceAccount -}}
- {{- if $serviceAccount.enabled -}}
- {{/* Create a copy of the configmap */}}
- {{- $objectData := (mustDeepCopy $serviceAccount) -}}
- {{- $objectName := include "ix.v1.common.lib.chart.names.fullname" $ -}}
- {{- if not $objectData.primary -}}
- {{- $objectName = (printf "%s-%s" (include "ix.v1.common.lib.chart.names.fullname" $) $name) -}}
- {{- end -}}
- {{/* Perform validations */}}
- {{- include "ix.v1.common.lib.chart.names.validation" (dict "name" $objectName) -}}
- {{- include "ix.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 "ix.v1.common.class.serviceAccount" (dict "rootCtx" $ "objectData" $objectData) -}}
- {{- end -}}
- {{- end -}}
- {{- end -}}
|