blob: 69d8999f67ca11e19aec057b0c5ca63769a49235 [file] [log] [blame]
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +01001{{/*
pramod47b1b822018-08-28 15:41:45 +00002# Copyright © 2018 Amdocs, Bell Canada
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.
Krzysztof Opasiakc0a57f82020-03-23 15:50:13 +010015*/}}
pramod47b1b822018-08-28 15:41:45 +000016
vitalied1e5876c2018-03-29 10:24:27 -050017apiVersion: v1
18kind: Service
19metadata:
20 annotations:
21 service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
pramod47b1b822018-08-28 15:41:45 +000022# name: {{ include "common.servicename" . }}
23 name: {{ .Values.service.name }}
vitalied1e5876c2018-03-29 10:24:27 -050024 namespace: {{ include "common.namespace" . }}
25 labels:
26 app: {{ include "common.fullname" . }}
27 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010028 release: "{{ include "common.release" . }}"
vitalied1e5876c2018-03-29 10:24:27 -050029 heritage: "{{ .Release.Service }}"
30spec:
31 ports:
BorislavG1ffbd992018-04-24 07:56:27 +000032 - name: {{ .Values.service.portName }}
vitalied1e5876c2018-03-29 10:24:27 -050033 port: {{ .Values.service.internalPort }}
34 clusterIP: None
35 selector:
BorislavG1ffbd992018-04-24 07:56:27 +000036 app: {{ include "common.fullname" . }}