30 lines
944 B
Smarty
30 lines
944 B
Smarty
{{/*
|
|
Create a default fully qualified app name.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
*/}}
|
|
{{- define "karmada.operator.fullname" -}}
|
|
{{- printf (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper karmada operator image name
|
|
*/}}
|
|
{{- define "karmada.operator.image" -}}
|
|
{{ include "common.images.image" (dict "imageRoot" .Values.operator.image "global" .Values.global) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
return the proper docker image registry secret names
|
|
*/}}
|
|
{{- define "karmada.operator.imagePullSecrets" -}}
|
|
{{ include "common.images.pullSecrets" (dict "images" (list .Values.operator.image) "global" .Values.global) }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the proper kubectl image name
|
|
*/}}
|
|
{{- define "karmada.kubectl.image" -}}
|
|
{{ include "common.images.image" (dict "imageRoot" .Values.kubectl.image "global" .Values.global) }}
|
|
{{- end -}}
|
|
|