blob: efcde572a3f955e350b8802beaae91a6230de8b7 [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T, ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000016apiVersion: v1
17kind: Service
18metadata:
BorislavG1ffbd992018-04-24 07:56:27 +000019 name: {{ include "common.servicename" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000020 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000025 heritage: {{ .Release.Service }}
26 annotations:
27 msb.onap.org/service-info: '[
28 {
29 "serviceName": "sdc-gui",
30 "version": "v1",
31 "url": "/sdc1",
32 "protocol": "UI",
33 "port": "{{ .Values.service.internalPort }}",
34 "visualRange":"0|1"
35 }
36 ]'
37spec:
38 type: {{ .Values.service.type }}
39 ports:
ChrisC742a7b22020-09-04 11:29:57 +020040 {{ if not .Values.security.disableHttp }}
IlanaPcbed68b2020-03-16 14:13:45 +020041 # setting http port only if enabled
Mandeep Khindaa1047f42018-03-22 02:12:15 +000042 {{if eq .Values.service.type "NodePort" -}}
43 - port: {{ .Values.service.internalPort }}
44 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
BorislavG1ffbd992018-04-24 07:56:27 +000045 name: {{ .Values.service.portName }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000046 {{- else -}}
47 - port: {{ .Values.service.externalPort }}
48 targetPort: {{ .Values.service.internalPort }}
BorislavG1ffbd992018-04-24 07:56:27 +000049 name: {{ .Values.service.portName }}
IlanaPcbed68b2020-03-16 14:13:45 +020050 {{ end }}
51 {{ end }}
52
53 {{if eq .Values.service.type "NodePort" -}}
54 - port: {{ .Values.service.internalPort2 }}
55 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
56 name: {{ .Values.service.portName }}2
57 {{- else -}}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000058 - port: {{ .Values.service.externalPort2 }}
59 targetPort: {{ .Values.service.internalPort2 }}
BorislavG1ffbd992018-04-24 07:56:27 +000060 name: {{ .Values.service.portName }}2
Mandeep Khindaa1047f42018-03-22 02:12:15 +000061 {{- end}}
62 selector:
63 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010064 release: {{ include "common.release" . }}