blob: 3e8107e446e1861230aadfbc8ab7943bcc0caf59 [file] [log] [blame]
Zhe Huang38dc8572019-12-08 00:01:26 -05001#
2#==================================================================================
3# Copyright (c) 2019 AT&T Intellectual Property.
4# Copyright (c) 2019 Nokia
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#==================================================================================
18#
19#
20# Abstract: Subscription Manager service manifest
21# Date: 28 May 2019
22#
23kind: Service
24apiVersion: v1
25metadata:
26 name: {{ include "common.servicename.submgr.rmr" . }}
27 namespace: {{ include "common.namespace.platform" . }}
28 labels:
29 app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
30 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
31 release: {{ .Release.Name }}
32 heritage: {{ .Release.Service }}
33spec:
34 selector:
35 app: {{ include "common.namespace.platform" . }}-{{ include "common.name.submgr" . }}
36 release: {{ .Release.Name }}
37 clusterIP: None
38 ports:
39 - name: rmrdata
40 port: {{ include "common.serviceport.submgr.rmr.data" . }}
41 protocol: TCP
42 targetPort: rmrdata
43 - name: rmrroute
44 port: {{ include "common.serviceport.submgr.rmr.route" . }}
45 protocol: TCP
46 targetPort: rmrroute
47