From: Sylvain Desbureaux Date: Fri, 18 Sep 2020 07:00:03 +0000 (+0000) Subject: Merge "Use lowercase in common.fullname during linting in helm3" X-Git-Tag: 7.0.0~230 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=7807a74160c82284caa977ec9f32ab24e4bc2f9c;hp=6a5cf9898f992ea29a932988717336a036d03228;p=oom.git Merge "Use lowercase in common.fullname during linting in helm3" --- diff --git a/kubernetes/common/common/templates/_name.tpl b/kubernetes/common/common/templates/_name.tpl index e918cc1dd8..adbe2b6cf9 100644 --- a/kubernetes/common/common/templates/_name.tpl +++ b/kubernetes/common/common/templates/_name.tpl @@ -51,6 +51,11 @@ {{- $dot := default . .dot -}} {{- $suffix := default "" .suffix -}} {{- $name := default $dot.Chart.Name $dot.Values.nameOverride -}} + {{/* when linted, the name must be lower cased. When used from a component, + name should be overriden in order to avoid collision so no need to do it */}} + {{- if eq (printf "common/%s/templates" $name) $dot.Template.BasePath -}} + {{- $name = lower $name -}} + {{- end -}} {{- include "common.fullnameExplicit" (dict "dot" $dot "chartName" $name "suffix" $suffix) }} {{- end -}}