47 lines
1.1 KiB
Smarty
47 lines
1.1 KiB
Smarty
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "ezd-crd.name" -}}
|
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
|
{{- end }}
|
|
|
|
|
|
{{/*
|
|
Create chart name and version as used by the chart label.
|
|
*/}}
|
|
{{- define "ezd-crd.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
|
{{- end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
Common labels
|
|
*/}}
|
|
{{- define "ezd-crd.labels" -}}
|
|
helm.sh/chart: {{ include "ezd-crd.chart" . }}
|
|
{{ include "ezd-crd.selectorLabels" . }}
|
|
{{- if .Chart.AppVersion }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
{{- end }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
{{- end }}
|
|
|
|
|
|
{{/*
|
|
Selector labels
|
|
*/}}
|
|
{{- define "ezd-crd.selectorLabels" -}}
|
|
app.kubernetes.io/name: {{ include "ezd-crd.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end }}
|
|
|
|
{{- define "ezd-crd.imagePullSecret" }}
|
|
{{- with .Values.global.imageCredentials }}
|
|
{{- printf "{\"auths\":{\"%s\":{\"username\":\"%s\",\"password\":\"%s\",\"email\":\"%s\",\"auth\":\"%s\"}}}" .registry .username .password .email (printf "%s:%s" .username .password | b64enc) | b64enc }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|