blob: 2f1ecca25ef3291cb0beff5b285dda2cd4f2333e [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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
16apiVersion: v1
17kind: Service
18metadata:
BorislavG1ffbd992018-04-24 07:56:27 +000019 name: {{ include "common.servicename" . }}
mayankg2703ced85142018-03-20 05:42:53 +000020 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26 annotations:
27 msb.onap.org/service-info: '[
28 {
BorislavG1ffbd992018-04-24 07:56:27 +000029 "serviceName": "{{ include "common.servicename" . }}",
mayankg2703ced85142018-03-20 05:42:53 +000030 "version": "v1",
31 "url": "/pdp",
32 "protocol": "REST",
mayankg2703c7985462018-03-29 14:24:23 +000033 "port": "{{ .Values.service.externalPort }}",
mayankg2703ced85142018-03-20 05:42:53 +000034 "visualRange":"1"
35 },
36 ]'
37spec:
38 type: {{ .Values.service.type }}
39 ports:
40 {{if eq .Values.service.type "NodePort" -}}
41 - port: {{ .Values.service.externalPort }}
42 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
BorislavG1ffbd992018-04-24 07:56:27 +000043 name: {{ .Values.service.portName }}
mayankg2703ced85142018-03-20 05:42:53 +000044 {{- else -}}
45 - port: {{ .Values.service.externalPort }}
46 targetPort: {{ .Values.service.internalPort }}
BorislavG1ffbd992018-04-24 07:56:27 +000047 name: {{ .Values.service.portName }}
mayankg2703ced85142018-03-20 05:42:53 +000048 {{- end}}
49 selector:
50 app: {{ include "common.name" . }}
51 release: {{ .Release.Name }}
52 sessionAffinity: None
Jorge Hernandez4519ccc2018-05-09 08:50:59 -050053 clusterIP: None