blob: 7736f0c9d7f8cfc2c2de4f7db428bf632e4ff47d [file] [log] [blame]
Jakub Latusekc586acb2020-10-21 13:36:29 +02001{{/*
BorislavG5f3b6192018-03-25 18:12:38 +03002# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00003# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Jakub Latusekc586acb2020-10-21 13:36:29 +020016*/}}
BorislavG5f3b6192018-03-25 18:12:38 +030017
18apiVersion: v1
19kind: Service
20metadata:
21 name: {{ .Values.service.name }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030027 heritage: {{ .Release.Service }}
28 annotations:
29spec:
30 type: {{ .Values.service.type }}
31 ports:
32 {{if eq .Values.service.type "NodePort" -}}
BorislavG2cf26842018-04-08 17:50:07 +030033 - port: {{ .Values.service.internalPort }}
BorislavG5f3b6192018-03-25 18:12:38 +030034 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
35 name: {{ .Values.service.name }}
BorislavG5f3b6192018-03-25 18:12:38 +030036 {{- else -}}
37 - port: {{ .Values.service.externalPort }}
38 targetPort: {{ .Values.service.internalPort }}
39 name: {{ .Values.service.name }}
BorislavG2cf26842018-04-08 17:50:07 +030040 {{- end}}
41 selector:
42 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010043 release: {{ include "common.release" . }}
BorislavG2cf26842018-04-08 17:50:07 +030044---
45apiVersion: v1
46kind: Service
47metadata:
48 name: {{ .Values.service.name2 }}
49 namespace: {{ include "common.namespace" . }}
50 labels:
51 app: {{ include "common.name" . }}
52 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010053 release: {{ include "common.release" . }}
BorislavG2cf26842018-04-08 17:50:07 +030054 heritage: {{ .Release.Service }}
55 annotations:
56spec:
57 type: {{ .Values.service.type2 }}
58 ports:
59 {{if eq .Values.service.type2 "NodePort" -}}
60 - port: {{ .Values.service.internalPort2 }}
61 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
62 name: {{ .Values.service.name2 }}
63 {{- else -}}
64 - port: {{ .Values.service.externalPort2 }}
65 targetPort: {{ .Values.service.internalPort2 }}
66 name: {{ .Values.service.name2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030067 {{- end}}
68 selector:
69 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010070 release: {{ include "common.release" . }}