Helm Chart for Istio with SDS
[demo.git] / vnfs / DAaaS / deploy / 00-init / istio / istio-instance / templates / _helpers.tpl
1 #/*
2 # * Copyright 2019 Intel Corporation, Inc
3 # *
4 # * Licensed under the Apache License, Version 2.0 (the "License");
5 # * you may not use this file except in compliance with the License.
6 # * You may obtain a copy of the License at
7 # *
8 # *     http://www.apache.org/licenses/LICENSE-2.0
9 # *
10 # * Unless required by applicable law or agreed to in writing, software
11 # * distributed under the License is distributed on an "AS IS" BASIS,
12 # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # * See the License for the specific language governing permissions and
14 # * limitations under the License.
15 # */
16
17
18 {{/*
19 Expand the name of the chart.
20 */}}
21 {{- define "Chart-name.name" -}}
22 {{- default .Chart.name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
23 {{- end -}}
24
25 {{/*
26 Create a default fully qualified app name.
27 We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
28 If release name contains chart name it will be used as a full name.
29 */}}
30 {{- define "istio.fullname" -}}
31 {{- if .Values.fullnameOverride -}}
32 {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
33 {{- else -}}
34 {{- $name := default .Chart.Name .Values.nameOverride -}}
35 {{- if contains $name .Release.Name -}}
36 {{- .Release.Name | trunc 63 | trimSuffix "-" -}}
37 {{- else -}}
38 {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
39 {{- end -}}
40 {{- end -}}
41 {{- end -}}
42
43 {{/*
44 Create chart name and version as used by the chart label.
45 */}}
46 {{- define "istio.chart" -}}
47 {{- .Chart.Name | trunc 63 | trimSuffix "-" -}}
48 {{- end -}}
49
50 {{/*
51 Create a fully qualified configmap name.
52 */}}
53 {{- define "istio.configmap.fullname" -}}
54 {{- printf "%s-%s" .Release.Name "istio-mesh-config" | trunc 63 | trimSuffix "-" -}}
55 {{- end -}}
56
57 {{/*
58 Configmap checksum.
59 */}}
60 {{- define "istio.configmap.checksum" -}}
61 {{- print $.Template.BasePath "/configmap.yaml" | sha256sum -}}
62 {{- end -}}
63