Merge R3 into master
[it/dep.git] / ric-aux / helm / mc-stack / charts / elasticsearch / templates / _helpers.tpl
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
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 {{/* vim: set filetype=mustache: */}}
18 {{/*
19 Expand the name of the chart.
20 */}}
21 {{- define "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 */}}
29 {{- define "fullname" -}}
30 {{- $name := default .Chart.Name .Values.nameOverride -}}
31 {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
32 {{- end -}}
33
34 {{- define "uname" -}}
35 {{ .Values.clusterName }}-{{ .Values.nodeGroup }}
36 {{- end -}}
37
38 {{- define "masterService" -}}
39 {{- if empty .Values.masterService -}}
40 {{ .Values.clusterName }}-master
41 {{- else -}}
42 {{ .Values.masterService }}
43 {{- end -}}
44 {{- end -}}
45
46 {{- define "endpoints" -}}
47 {{- $replicas := .replicas | int }}
48 {{- $uname := printf "%s-%s" .clusterName .nodeGroup }}
49   {{- range $i, $e := untilStep 0 $replicas 1 -}}
50 {{ $uname }}-{{ $i }},
51   {{- end -}}
52 {{- end -}}
53
54 {{- define "esMajorVersion" -}}
55 {{- if .Values.esMajorVersion -}}
56 {{ .Values.esMajorVersion }}
57 {{- else -}}
58 {{- $version := int (index (.Values.imageTag | splitList ".") 0) -}}
59   {{- if and (contains "docker.elastic.co/elasticsearch/elasticsearch" .Values.image) (not (eq $version 0)) -}}
60 {{ $version }}
61   {{- else -}}
62 7
63   {{- end -}}
64 {{- end -}}
65 {{- end -}}