Sylvain Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 1 | {{/* |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 2 | # |
| 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 Desbureaux | 47eb4d2 | 2020-12-10 12:15:27 +0100 | [diff] [blame] | 20 | */}} |
Sylvain Desbureaux | 7007041 | 2020-11-09 21:58:48 +0100 | [diff] [blame] | 21 | |
| 22 | apiVersion: v1 |
| 23 | kind: Service |
| 24 | metadata: |
| 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 }} |
| 32 | spec: |
| 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 |