blob: 2f7aaa960d8d44ec26d790cd17e0de906b1e7924 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002#
3# ============LICENSE_START=======================================================
4# org.onap.aai
5# ================================================================================
6# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
7# ================================================================================
8# Licensed under the Apache License, Version 2.0 (the "License");
9# you may not use this file except in compliance with the License.
10# You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing, software
15# distributed under the License is distributed on an "AS IS" BASIS,
16# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17# See the License for the specific language governing permissions and
18# limitations under the License.
19# ============LICENSE_END=========================================================
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010020*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010021
22apiVersion: v1
23kind: Service
24metadata:
25 name: {{ include "common.servicename" . }}
26 namespace: {{ include "common.namespace" . }}
27 labels:
28 app: {{ include "common.name" . }}
29 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
30 release: {{ include "common.release" . }}
31 heritage: {{ .Release.Service }}
32spec:
33 type: {{ .Values.service.type }}
34 ports:
35 {{if eq .Values.service.type "NodePort" -}}
36 - port: {{ .Values.service.internalPort }}
37 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
38 name: {{ .Values.service.portName }}
39 - port: {{ .Values.service.internalPort2 }}
40 nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
41 name: {{ .Values.service.portName2 }}
42 {{- else -}}
43 - port: {{ .Values.service.internalPort }}
44 name: {{ .Values.service.portName }}
45 - port: {{ .Values.service.internalPort2 }}
46 name: {{ .Values.service.portName2 }}
47 {{- end}}
48 selector:
49 app: {{ include "common.name" . }}
50 release: {{ include "common.release" . }}
51 clusterIP: None