aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/common/templates/_name.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'kubernetes/common/common/templates/_name.tpl')
-rw-r--r--kubernetes/common/common/templates/_name.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/common/templates/_name.tpl b/kubernetes/common/common/templates/_name.tpl
index f84ca21f3a..9b7e69046a 100644
--- a/kubernetes/common/common/templates/_name.tpl
+++ b/kubernetes/common/common/templates/_name.tpl
@@ -27,7 +27,7 @@
*/}}
{{- define "common.fullname" -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
- {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
+ {{- printf "%s-%s" (include "common.release" .) $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
@@ -37,5 +37,5 @@
this function would answer back "toto".
*/}}
{{- define "common.release" -}}
- {{- regexReplaceAll "-[a-zA-Z0-9]*$" .Release.Name "" }}
+ {{- first (regexSplit "-" .Release.Name -1) }}
{{- end -}}