diff options
author | Jerome Doucerain <jerome.doucerain@bell.ca> | 2018-04-16 14:26:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-04-16 14:26:32 +0000 |
commit | a6ee34ed3a655541a4cac72c15dc7a9ee57a0ccc (patch) | |
tree | 00f81391302e38ace7970dbe4c9589aa72947a41 /kubernetes/common | |
parent | 86a6e6863215b75c5b76e97cb2b1021406153f2c (diff) | |
parent | 14d6eae467e8769f001d7d46694f87bdce9c44f1 (diff) |
Merge "Add service name standard template"
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/common/templates/_service.tpl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/kubernetes/common/common/templates/_service.tpl b/kubernetes/common/common/templates/_service.tpl new file mode 100644 index 0000000000..d76c5e0e8a --- /dev/null +++ b/kubernetes/common/common/templates/_service.tpl @@ -0,0 +1,30 @@ +{{/* +# Copyright © 2017 Amdocs, Bell Canada +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +*/}} + +{{/* + Resolve the name of a chart's service. + + The default will be the chart name, unless + overridden in the service configuration. + + - .Values.service.name : override default service (ie. chart) name +*/}} +{{/* + Expand the service name for a chart. +*/}} +{{- define "common.servicename" -}} + {{- default .Chart.Name .Values.service.name trunc 63 | trimSuffix "-" -}} +{{- end -}}
\ No newline at end of file |