59 lines
2.1 KiB
Smarty
59 lines
2.1 KiB
Smarty
|
{{/* Service Spawner */}}
|
||
|
{{/* Call this template:
|
||
|
{{ include "tc.v1.common.spawner.service" $ -}}
|
||
|
*/}}
|
||
|
|
||
|
{{- define "tc.v1.common.spawner.service" -}}
|
||
|
{{- $fullname := include "tc.v1.common.lib.chart.names.fullname" $ -}}
|
||
|
|
||
|
{{/* Primary validation for enabled service. */}}
|
||
|
{{- include "tc.v1.common.lib.service.primaryValidation" $ -}}
|
||
|
|
||
|
{{- range $name, $service := .Values.service -}}
|
||
|
|
||
|
{{- if $service.enabled -}}
|
||
|
|
||
|
{{/* Create a copy of the configmap */}}
|
||
|
{{- $objectData := (mustDeepCopy $service) -}}
|
||
|
|
||
|
{{/* Init object name */}}
|
||
|
{{- $objectName := $name -}}
|
||
|
|
||
|
{{/* Default expandName to true */}}
|
||
|
{{- $expandName := true -}}
|
||
|
{{- if (hasKey $objectData "expandObjectName") -}}
|
||
|
{{- if not (kindIs "invalid" $objectData.expandObjectName) -}}
|
||
|
{{- $expandName = $objectData.expandName -}}
|
||
|
{{- else -}}
|
||
|
{{- fail (printf "Service - Expected the defined key [expandObjectName] in <secret.%s> to not be empty" $name) -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- if $expandName -}}
|
||
|
{{/* Expand the name of the service if expandName resolves to true */}}
|
||
|
{{- $objectName = $fullname -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- if and $expandName (not $objectData.primary) -}}
|
||
|
{{/* If the service is not primary append its name to fullname */}}
|
||
|
{{- $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") -}}
|
||
|
{{- include "tc.v1.common.lib.service.validation" (dict "rootCtx" $ "objectData" $objectData) -}}
|
||
|
|
||
|
{{/* 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.service" (dict "rootCtx" $ "objectData" $objectData) -}}
|
||
|
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- end -}}
|