Moving dev back to LF Gerrit
[it/dep.git] / ric-common / Common-Template / helm / ric-common / templates / _esreader.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 # template for component name
18 {{- define "common.name.esreader" -}}
19   {{- if .Values.esreader -}}
20     {{- if .Values.esreader.nameOverride -}}
21       {{- printf "%s" .Values.esreader.nameOverride -}}
22     {{- else -}}
23       {{- printf "esreader" -}}
24     {{- end -}}
25   {{- else -}}
26     {{- printf "esreader" -}}
27   {{- end -}}
28 {{- end -}}
29
30 {{- define "common.fullname.esreader" -}}
31   {{- $name := ( include "common.name.esreader" . ) -}}
32   {{- $namespace := ( include "common.namespace.infra" . ) -}}
33   {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}}
34 {{- end -}}
35
36
37
38 {{- define "common.deploymentname.esreader" -}}
39   {{- $name := ( include "common.fullname.esreader" . ) -}}
40   {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
41 {{- end -}}
42
43
44 {{- define "common.configmapname.esreader" -}}
45   {{- $name := ( include "common.fullname.esreader" . ) -}}
46   {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
47 {{- end -}}
48
49
50 {{- define "common.containername.esreader" -}}
51   {{- $name := ( include "common.fullname.esreader" . ) -}}
52   {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
53 {{- end -}}
54
55
56 {{- define "common.serviceport.esreader.http" -}}8080{{- end -}}
57
58 {{- define "common.pvname.esreader" -}}
59   {{- $name := ( include "common.fullname.esreader" . ) -}}
60   {{- printf "pv-%s" $name | trunc 63 | trimSuffix "-" -}}
61 {{- end -}}
62
63 {{- define "common.pvcname.esreader" -}}
64   {{- $name := ( include "common.fullname.esreader" . ) -}}
65   {{- printf "pvc-%s" $name | trunc 63 | trimSuffix "-" -}}
66 {{- end -}}
67