RIC-826: Provide support for xapp_name also in the xapp descriptor
[ric-plt/appmgr.git] / xapp_orchestrater / dev / xapp_onboarder / xapp_onboarder / resources / xapp-std / templates / service-rmr.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18 apiVersion: v1
19 kind: Service
20 metadata:
21   name: {{ include "ricxapp.servicename.rmr" . }}
22   namespace: {{ include "ricxapp.namespace" . }}
23   labels:
24     app: {{ include "ricxapp.namespace" . }}-{{ include "ricxapp.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ .Release.Name }}
27     heritage: {{ .Release.Service }}
28 spec:
29   type: ClusterIP
30   ports:
31   {{- range .Values.messaging.ports  }}
32   {{- if eq .name "rmrdata" }}
33     - port: {{ .port }}
34       targetPort: {{ .name }}
35       protocol: TCP
36       name: {{ .name }}
37   {{- end }}
38   {{- end }}
39   {{- range .Values.messaging.ports  }}
40   {{- if contains "rmr" .name }} {{- if ne .name "rmrdata" }}
41     - port: {{ .port }}
42       targetPort: {{ .name }}
43       protocol: TCP
44       name: {{ .name }}
45   {{- end }}
46   {{- end }}
47   {{- end }}
48   selector:
49     app: {{ include "ricxapp.namespace" . }}-{{ include "ricxapp.name" . }}
50     release: {{ .Release.Name }}