blob: ecbab2643949b1ff986193e0b08dcea1d66123df [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 ports:
Andreas Geissler5846a6e2023-03-30 17:26:14 +020030 - name: {{ .Values.service.portName }}
31 port: {{ .Values.service.externalPort }}
32 targetPort: {{ .Values.service.internalPort }}
osk1146127fd7d82021-06-18 00:51:17 +020033 {{- if eq .Values.service.type "NodePort" }}
Andreas Geissler5846a6e2023-03-30 17:26:14 +020034 {{ if not (include "common.ingressEnabled" .) }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010035 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
Andreas Geissler5846a6e2023-03-30 17:26:14 +020036 {{ end }}
osk1146127fd7d82021-06-18 00:51:17 +020037 {{- end }}
Andreas Geissler5846a6e2023-03-30 17:26:14 +020038 type: {{ if (include "common.ingressEnabled" .) }}ClusterIP{{ else }}{{ .Values.service.type }}{{ end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010039 selector:
40 app: {{ include "common.name" . }}
leila46fb5802022-11-15 11:33:21 -050041 sessionAffinity: {{ .Values.service.sessionAffinity }}
rope2525daf7a82022-11-01 15:19:48 +000042---
43apiVersion: v1
44kind: Service
45metadata:
46 name: {{ include "common.servicename" . }}-internal
47 namespace: {{ include "common.namespace" . }}
48 labels:
49 app: {{ include "common.name" . }}
Andreas Geisslerceac2602023-07-17 18:55:54 +020050 app.kubernetes.io/name: {{ include "common.name" . }}
rope2525daf7a82022-11-01 15:19:48 +000051 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
52 release: {{ include "common.release" . }}
53 heritage: {{ .Release.Service }}
54spec:
55 ports:
56 - name: {{ .Values.service.portName }}
Andreas Geissler5846a6e2023-03-30 17:26:14 +020057 port: {{ .Values.service.externalPort }}
58 targetPort: {{ .Values.service.internalPort }}
rope2525daf7a82022-11-01 15:19:48 +000059 type: ClusterIP
60 selector:
61 app: {{ include "common.name" . }}
leila8bd5bf32022-11-16 19:42:09 -050062---
63apiVersion: v1
64kind: Service
65metadata:
66 name: {{ include "common.servicename" . }}-metrics
67 namespace: {{ include "common.namespace" . }}
68 labels:
69 app: {{ include "common.name" . }}-metrics
Andreas Geisslerceac2602023-07-17 18:55:54 +020070 app.kubernetes.io/name: {{ include "common.name" . }}
leila8bd5bf32022-11-16 19:42:09 -050071 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
72 release: {{ include "common.release" . }}
73 heritage: {{ .Release.Service }}
74spec:
75 ports:
76 - port: {{ .Values.metricsService.externalPort }}
77 targetPort: {{ .Values.metricsService.internalPort }}
78 name: {{ .Values.metricsService.portName }}
79 type: {{ .Values.metricsService.type }}
80 selector:
81 app: {{ include "common.name" . }}
82 clusterIP: None