diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-04-17 03:37:50 +0000 |
---|---|---|
committer | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2018-04-17 14:08:30 +0000 |
commit | b9761d66470511dac67a7eafe1dc9c90e5bbfaf4 (patch) | |
tree | 0db338999dd4ebc931f37e0cca7ffb12a3207771 /kubernetes/common | |
parent | 7ea563e097a945ec695c713fb2de3665c0c9b49c (diff) |
fixing bug in new service template
Issue-ID: OOM-906
Change-Id: Idfbb47f70146a63759fe9829b6dae25b88cc562f
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common/templates/_service.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/common/templates/_service.tpl b/kubernetes/common/common/templates/_service.tpl index d76c5e0e8a..25e373a7c9 100644 --- a/kubernetes/common/common/templates/_service.tpl +++ b/kubernetes/common/common/templates/_service.tpl @@ -26,5 +26,5 @@ Expand the service name for a chart. */}} {{- define "common.servicename" -}} - {{- default .Chart.Name .Values.service.name trunc 63 | trimSuffix "-" -}} + {{- default .Chart.Name .Values.service.name | trunc 63 | trimSuffix "-" -}} {{- end -}}
\ No newline at end of file |