Extend K8S and RIC installation instructions
[it/dep.git] / ric-common / Common-Template / helm / ric-common / templates / _message-router.tpl
1 ################################################################################
2 #   Copyright (c) 2019 ATT 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.messagerouter" -}}
19   {{- if .Values.messagerouter -}}
20     {{- if .Values.messagerouter.nameOverride -}}
21       {{- printf "%s" .Values.messagerouter.nameOverride -}}
22     {{- else -}}
23       {{- printf "messagerouter" -}}
24     {{- end -}}
25   {{- else -}}
26     {{- printf "messagerouter" -}}
27   {{- end -}}
28 {{- end -}}
29
30 {{- define "common.fullname.messagerouter" -}}
31   {{- $name := ( include "common.name.messagerouter" . ) -}}
32   {{- $namespace := ( include "common.namespace.aux" . ) -}}
33   {{- printf "%s-%s" $namespace $name | trunc 63 | trimSuffix "-" -}}
34 {{- end -}}
35
36
37
38 {{- define "common.deploymentname.messagerouter" -}}
39   {{- $name := ( include "common.fullname.messagerouter" . ) -}}
40   {{- printf "deployment-%s" $name | trunc 63 | trimSuffix "-" -}}
41 {{- end -}}
42
43
44 {{- define "common.configmapname.messagerouter" -}}
45   {{- $name := ( include "common.fullname.messagerouter" . ) -}}
46   {{- printf "configmap-%s" $name | trunc 63 | trimSuffix "-" -}}
47 {{- end -}}
48
49
50
51 {{- define "common.containername.messagerouter" -}}
52   {{- $name := ( include "common.fullname.messagerouter" . ) -}}
53   {{- printf "container-%s" $name | trunc 63 | trimSuffix "-" -}}
54 {{- end -}}
55
56
57 {{- define "common.serviceport.messagerouter.http" -}}3904{{- end -}}
58 {{- define "common.servicename.messagerouter.http" -}}ricaux-messagerouter{{- end -}}