diff options
author | kerenj <keren.joseph@amdocs.com> | 2018-03-06 14:46:42 +0000 |
---|---|---|
committer | kerenj <keren.joseph@amdocs.com> | 2018-03-06 14:46:42 +0000 |
commit | 0e93fb5bfce4fcd462f5db0d9c6d1f29f2e742a6 (patch) | |
tree | 1ed292b75c3dbd56537751c50aef082ccffd5181 /kubernetes/common | |
parent | b6f992d5421b778cca7549b24f753107505b0b1e (diff) |
make so chart one namespace compatible
changed namespace to be nsPrefix only
added component name as prefix to chart name
changed all templated to use name instead of fullname
Issue-ID: OOM-784
Change-Id: If2288ba14e5f74a7f7ba4c2f9bf46eecc36feca7
Signed-off-by: kerenj <keren.joseph@amdocs.com>
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common-templates/templates/_namespace.tpl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kubernetes/common/common-templates/templates/_namespace.tpl b/kubernetes/common/common-templates/templates/_namespace.tpl index 076fd53f7a..2964a0f207 100644 --- a/kubernetes/common/common-templates/templates/_namespace.tpl +++ b/kubernetes/common/common-templates/templates/_namespace.tpl @@ -7,7 +7,5 @@ - .Values.nsSuffix : override namespace suffix */}} {{- define "common.namespace" -}} - {{- $prefix := default .Release.Name .Values.nsPrefix -}} - {{- $suffix := default .Chart.Name .Values.nsSuffix -}} - {{- printf "%s-%s" $prefix $suffix -}} + {{- default .Release.Name .Values.nsPrefix -}} {{- end -}} |