mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.1 KiB
30 lines
1.1 KiB
{{- /*
|
|
name defines a template for the name of the chart. It should be used for the `app` label.
|
|
This is common practice in many Kubernetes manifests, and is not Helm-specific.
|
|
|
|
The prevailing wisdom is that names should only contain a-z, 0-9 plus dot (.) and dash (-), and should
|
|
not exceed 63 characters.
|
|
|
|
Parameters:
|
|
|
|
- .Values.nameOverride: Replaces the computed name with this given name
|
|
- .Values.namePrefix: Prefix
|
|
- .Values.global.namePrefix: Global prefix
|
|
- .Values.nameSuffix: Suffix
|
|
- .Values.global.nameSuffix: Global suffix
|
|
|
|
The applied order is: "global prefix + prefix + name + suffix + global suffix"
|
|
|
|
Usage: 'name: "{{- template "common.name" . -}}"'
|
|
*/ -}}
|
|
{{- define "common.name"}}
|
|
{{- $global := default (dict) .Values.global -}}
|
|
{{- $base := default .Chart.Name .Values.nameOverride -}}
|
|
{{- $gpre := default "" $global.namePrefix -}}
|
|
{{- $pre := default "" .Values.namePrefix -}}
|
|
{{- $suf := default "" .Values.nameSuffix -}}
|
|
{{- $gsuf := default "" $global.nameSuffix -}}
|
|
{{- $name := print $gpre $pre $base $suf $gsuf -}}
|
|
{{- $name | lower | trunc 54 | trimSuffix "-" -}}
|
|
{{- end -}}
|