| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- {{/*
- Return the common name for app components.
- */}}
- {{- define "shuffle.app.name" -}}
- {{- printf "%s-app" (include "common.names.fullname" .) | trunc 63 -}}
- {{- end -}}
- {{/*
- Return the common labels for app components deployed via helm.
- NOTE: App deployments and services use shuffle.appInstance.labels instead.
- */}}
- {{- define "shuffle.app.labels" -}}
- {{- include "common.labels.standard" . }}
- app.kubernetes.io/component: app
- {{- end -}}
- {{/*
- Create the name of the service account to use for Shuffle apps
- */}}
- {{- define "shuffle.app.serviceAccount.name" -}}
- {{- if .Values.app.serviceAccount.create -}}
- {{ default (include "shuffle.app.name" .) .Values.app.serviceAccount.name | trunc 63 | trimSuffix "-" }}
- {{- else -}}
- {{ default "default" .Values.app.serviceAccount.name }}
- {{- end -}}
- {{- end -}}
- {{/*
- Return the proper Docker Image Registry Secret Names for the app service account
- */}}
- {{- define "shuffle.app.serviceAccount.imagePullSecrets" -}}
- {{- $pullSecrets := list }}
- {{- range .Values.global.imagePullSecrets -}}
- {{- if kindIs "map" . -}}
- {{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" .name "context" .)) -}}
- {{- else -}}
- {{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" . "context" .)) -}}
- {{- end -}}
- {{- end -}}
- {{- range .Values.app.serviceAccount.imagePullSecrets -}}
- {{- if kindIs "map" . -}}
- {{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" .name "context" .)) -}}
- {{- else -}}
- {{- $pullSecrets = append $pullSecrets (include "common.tplvalues.render" (dict "value" . "context" .)) -}}
- {{- end -}}
- {{- end -}}
- {{- if (not (empty $pullSecrets)) -}}
- imagePullSecrets:
- {{- range $pullSecrets | uniq }}
- - name: {{ . }}
- {{- end }}
- {{- end }}
- {{- end -}}
- {{/*
- Return the match labels for ALL apps.
- These match the labels of helm-deployed apps (shuffle.appInstance.labels),
- as well as worker-deployed apps (deployK8sApp).
- */}}
- {{- define "shuffle.app.matchLabels" -}}
- app.kubernetes.io/name: shuffle-app
- {{- end -}}
- {{/*
- Return the sanitized name of a shuffle app.
- Usage:
- {{ include "shuffle.appInstance.name" $app }}
- */}}
- {{- define "shuffle.appInstance.name" -}}
- {{ .name | replace "_" "-" | lower }}
- {{- end -}}
- {{/*
- Return the sanitized name of a shuffle app, including the version of the app.
- Usage:
- {{ include "shuffle.appInstance.fullname" $app }}
- */}}
- {{- define "shuffle.appInstance.fullname" -}}
- {{ printf "%s-%s" .name .version | replace "." "-" | replace "_" "-" | lower }}
- {{- end -}}
- {{/*
- Return the labels for a shuffle app deployed by helm.
- Usage:
- {{ include "shuffle.appInstance.labels" (dict "app" $app "customLabels" .Values.commonLabels "context" $) }}
- */}}
- {{- define "shuffle.appInstance.labels" -}}
- {{- $customLabels := mustMerge (dict "app.kubernetes.io/name" "shuffle-app" "app.kubernetes.io/part-of" "shuffle") (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) -}}
- {{ include "common.labels.standard" (dict "customLabels" $customLabels "context" .context) }}
- app.shuffler.io/name: {{ include "shuffle.appInstance.name" .app }}
- app.shuffler.io/version: {{ .app.version | quote }}
- {{- end -}}
- {{/*
- Return the match labels of a single app, deployed via helm.
- Usage:
- {{ include "shuffle.appInstance.matchLabels" (dict "app" $app "customLabels" .Values.commonLabels "context" $) }}
- */}}
- {{- define "shuffle.appInstance.matchLabels" -}}
- {{- $customLabels := mustMerge (dict "app.kubernetes.io/name" "shuffle-app" "app.kubernetes.io/part-of" "shuffle") (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) -}}
- {{ include "common.labels.matchLabels" (dict "customLabels" $customLabels "context" .context) }}
- app.shuffler.io/name: {{ include "shuffle.appInstance.name" .app }}
- app.shuffler.io/version: {{ .app.version | quote }}
- {{- end -}}
- {{/*
- Return a podAffinity/podAntiAffinity definition.
- Usage:
- {{ include "shuffle.appInstance.affinities.pods" (dict "type" "soft" "app" $app "customLabels" $podLabels "context" $) -}}
- */}}
- {{- define "shuffle.appInstance.affinities.pods" -}}
- {{- $customLabels := mustMerge (dict "app.kubernetes.io/name" "shuffle-app" "app.kubernetes.io/part-of" "shuffle") (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) -}}
- {{- $extraMatchLabels := dict "app.shuffler.io/name" (include "shuffle.appInstance.name" .app) "app.shuffler.io/version" (.app.version) }}
- {{ include "common.affinities.pods" (dict "type" .type "customLabels" $customLabels "context" .context "extraMatchLabels" $extraMatchLabels )}}
- {{- end -}}
- {{/*
- Return the environment variables of shuffle apps in the format
- KEY: VALUE
- */}}
- {{- define "shuffle.appInstance.env" -}}
- SHUFFLE_APP_SDK_TIMEOUT: {{ .Values.app.sdkTimeout | quote }}
- SHUFFLE_APP_EXPOSED_PORT: {{ .Values.app.exposedContainerPort | quote }}
- SHUFFLE_LOGS_DISABLED: {{ .Values.app.disableLogs | quote }}
- {{- end -}}
|