Add property metrics.url.mc to Dashboard chart
[it/dep.git] / ric-common / Common-Template / helm / ric-common / templates / _mrsub.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.mrsub" -}}
19   {{- if .Values.mrsub -}}
20     {{- if .Values.mrsub.nameOverride -}}
21       {{- printf "%s" .Values.mrsub.nameOverride -}}
22     {{- else -}}
23       {{- printf "mrsub" -}}
24     {{- end -}}
25   {{- else -}}
26     {{- printf "mrsub" -}}
27   {{- end -}}
28 {{- end -}}
29
30 {{- define "common.fullname.mrsub" -}}
31   {{- $name := ( include "common.name.mrsub" . ) -}}
32   {{- $namespace := ( include "common.namespace.aux" . ) -}}
33   {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}}
34 {{- end -}}
35
36
37
38 {{- define "common.deploymentname.mrsub" -}}
39   {{- $name := ( include "common.fullname.mrsub" . ) -}}
40   {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
41 {{- end -}}
42
43
44 {{- define "common.configmapname.mrsub" -}}
45   {{- $name := ( include "common.fullname.mrsub" . ) -}}
46   {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
47 {{- end -}}
48
49
50 {{- define "common.containername.mrsub" -}}
51   {{- $name := ( include "common.fullname.mrsub" . ) -}}
52   {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
53 {{- end -}}
54
55
56 {{- define "common.serviceport.mrsub.http" -}}8080{{- end -}}