blob: ac9d179628d911f956630055e3c6f1f8e42d3f6a [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mike Elliottd32d36e2018-02-12 15:54:03 -050015apiVersion: v1
16kind: Service
17metadata:
Mike Elliott282751f2018-04-19 17:24:08 -040018 name: {{ include "common.servicename" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050019 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25 annotations:
26 msb.onap.org/service-info: '[
27 {
Mike Elliott282751f2018-04-19 17:24:08 -040028 "serviceName": "{{ include "common.servicename" . }}",
Mike Elliottd32d36e2018-02-12 15:54:03 -050029 "version": "v1",
30 "url": "/ecomp/mso/infra",
31 "protocol": "REST"
32 "port": "8080",
33 "visualRange":"1"
34 },
35 {
36 "serviceName": "so-deprecated",
37 "version": "v1",
38 "url": "/ecomp/mso/infra",
39 "protocol": "REST"
40 "port": "8080",
41 "visualRange":"1",
42 "path":"/ecomp/mso/infra"
43 }
44 ]'
45spec:
46 type: {{ .Values.service.type }}
47 ports:
48 {{if eq .Values.service.type "NodePort" -}}
49 - port: {{ .Values.service.internalPort }}
Mike Elliott282751f2018-04-19 17:24:08 -040050 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
51 name: {{ .Values.service.portName }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050052 - port: {{ .Values.service.internalPort2 }}
Mike Elliott282751f2018-04-19 17:24:08 -040053 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
54 name: {{ .Values.service.portName }}2
Mike Elliottd32d36e2018-02-12 15:54:03 -050055 - port: {{ .Values.service.internalPort3 }}
Mike Elliott282751f2018-04-19 17:24:08 -040056 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
57 name: {{ .Values.service.portName }}3
Mike Elliottd32d36e2018-02-12 15:54:03 -050058 - port: {{ .Values.service.internalPort4 }}
Mike Elliott282751f2018-04-19 17:24:08 -040059 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort4 }}
60 name: {{ .Values.service.portName }}4
Mike Elliottd32d36e2018-02-12 15:54:03 -050061 - port: {{ .Values.service.internalPort5 }}
Mike Elliott282751f2018-04-19 17:24:08 -040062 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort5 }}
63 name: {{ .Values.service.portName }}5
Mike Elliottd32d36e2018-02-12 15:54:03 -050064 {{- else -}}
65 - port: {{ .Values.service.externalPort }}
66 targetPort: {{ .Values.service.internalPort }}
Mike Elliott282751f2018-04-19 17:24:08 -040067 name: {{ .Values.service.portName }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050068 - port: {{ .Values.service.externalPort2 }}
69 targetPort: {{ .Values.service.internalPort2 }}
Mike Elliott282751f2018-04-19 17:24:08 -040070 name: {{ .Values.service.portName }}2
Mike Elliottd32d36e2018-02-12 15:54:03 -050071 - port: {{ .Values.service.externalPort3 }}
72 targetPort: {{ .Values.service.internalPort3 }}
Mike Elliott282751f2018-04-19 17:24:08 -040073 name: {{ .Values.service.portName }}3
Mike Elliottd32d36e2018-02-12 15:54:03 -050074 - port: {{ .Values.service.externalPort4 }}
75 targetPort: {{ .Values.service.internalPort4 }}
Mike Elliott282751f2018-04-19 17:24:08 -040076 name: {{ .Values.service.portName }}4
Mike Elliottd32d36e2018-02-12 15:54:03 -050077 - port: {{ .Values.service.externalPort5 }}
78 targetPort: {{ .Values.service.internalPort5 }}
Mike Elliott282751f2018-04-19 17:24:08 -040079 name: {{ .Values.service.portName }}5
Mike Elliottd32d36e2018-02-12 15:54:03 -050080 {{- end}}
81 selector:
82 app: {{ include "common.name" . }}
Jerome Doucerain96bebdc2018-03-17 16:03:08 -040083 release: {{ .Release.Name }}
84