blob: 5a26d6701cc49a9c21fdda7d50177af400c91b9d [file] [log] [blame]
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -04001{{/*
2# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
3#
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:
19 name: {{ include "common.servicename" . }}
20 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" . }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040025 heritage: {{ .Release.Service }}
26 annotations:
27 service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
28spec:
29 type: {{ .Values.service.type }}
30 # Not working, open k8s bug: https://github.com/kubernetes/kubernetes/issues/58662
31 publishNotReadyAddresses: true
32 ports:
33 {{if eq .Values.service.type "NodePort" -}}
34 - port: {{ .Values.service.internalPort }}
35 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
36 name: {{ .Values.service.portName }}
37 - port: {{ .Values.service.internalPort2 }}
38 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
39 name: {{ .Values.service.portName3 }}
40 - port: {{ .Values.service.internalPort3 }}
41 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
42 name: {{ .Values.service.portName3 }}
43 {{- else -}}
44 - port: {{ .Values.service.internalPort }}
45 name: {{ .Values.service.portName }}
46 - port: {{ .Values.service.internalPort2 }}
47 name: {{ .Values.service.portName2 }}
48 - port: {{ .Values.service.internalPort3 }}
49 name: {{ .Values.service.portName3 }}
50 {{- end}}
51 selector:
52 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010053 release: {{ include "common.release" . }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040054 clusterIP: None