blob: 0613129aac72a23e2d0c955c3dbde28c3fe77555 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
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.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010015*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010016
17apiVersion: v1
18kind: Service
19metadata:
20 name: {{ include "common.servicename" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020024 app.kubernetes.io/name: {{ include "common.name" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010025 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26 release: {{ include "common.release" . }}
27 heritage: {{ .Release.Service }}
28spec:
29 type: {{ .Values.service.type }}
30 ports:
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010031 {{ if eq .Values.service.type "NodePort" -}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010032 - port: {{ .Values.service.internalPort }}
33 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020034 name: {{ .Values.service.portName }}
35 targetPort: {{ .Values.service.portName }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010036 - port: {{ .Values.service.internalPort2 }}
37 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
38 name: {{ .Values.service.portName2 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020039 targetPort: {{ .Values.service.portName2 }}
leila46fb5802022-11-15 11:33:21 -050040 - port: {{ .Values.service.internalPort3 }}
41 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
42 name: {{ .Values.service.portName3 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020043 targetPort: {{ .Values.service.portName3 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010044 {{- else -}}
45 - port: {{ .Values.service.internalPort }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020046 name: {{ .Values.service.portName }}
47 targetPort: {{ .Values.service.portName }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010048 - port: {{ .Values.service.internalPort2 }}
49 name: {{ .Values.service.portName2 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020050 targetPort: {{ .Values.service.portName2 }}
leila46fb5802022-11-15 11:33:21 -050051 - port: {{ .Values.service.internalPort3 }}
52 name: {{ .Values.service.portName3 }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020053 targetPort: {{ .Values.service.portName3 }}
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010054 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010055 selector:
56 app: {{ include "common.name" . }}
57 release: {{ include "common.release" . }}
leila46fb5802022-11-15 11:33:21 -050058 clusterIP: None
59 sessionAffinity: {{ .Values.service.sessionAffinity }}