blob: 5ba4f68be9531c73e4a60dc2c74bb5e1f9f4390f [file] [log] [blame]
kj52dfb132018-03-27 15:50:39 +03001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: v1
16kind: Service
17metadata:
BorislavG1ffbd992018-04-24 07:56:27 +000018 name: {{ include "common.servicename" . }}
kj52dfb132018-03-27 15:50:39 +030019 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
kj52dfb132018-03-27 15:50:39 +030024 heritage: {{ .Release.Service }}
25spec:
26 ports:
Instrumental0c7bc942019-08-06 16:36:13 -050027 - port: {{ .Values.service.port }}
28 nodePort: {{ .Values.service.public_port }}
Instrumentalcc3a0bd2019-05-01 14:18:49 -050029 name: aaf-hello
kj52dfb132018-03-27 15:50:39 +030030 selector:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
Instrumentalcc3a0bd2019-05-01 14:18:49 -050033 type: "NodePort"