Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / aai / components / aai-graphadmin / templates / service.yaml
1 {{/*
2 #
3 # ============LICENSE_START=======================================================
4 # org.onap.aai
5 # ================================================================================
6 # Copyright © 2018 AT&T Intellectual Property. All rights reserved.
7 # Modifications Copyright © 2021 Orange
8 # ================================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #    http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END=========================================================
21 */}}
22
23 apiVersion: v1
24 kind: Service
25 metadata:
26   name: {{ include "common.servicename" . }}
27   namespace: {{ include "common.namespace" . }}
28   labels:
29     app: {{ include "common.name" . }}
30     app.kubernetes.io/name: {{ include "common.name" . }}
31     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
32     release: {{ include "common.release" . }}
33     heritage: {{ .Release.Service }}
34 spec:
35   type: {{ .Values.service.type }}
36   ports:
37   {{if eq .Values.service.type "NodePort" -}}
38   - port: {{ .Values.service.internalPort }}
39     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
40     name: {{ .Values.service.portName }}
41     targetPort: {{ .Values.service.portName }}
42   - port: {{ .Values.service.internalPort2 }}
43     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
44     name: {{ .Values.service.portName2 }}
45     targetPort: {{ .Values.service.portName2 }}
46   - port: {{ .Values.service.internalPort3 }}
47     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
48     name: {{ .Values.service.portName3 }}
49     targetPort: {{ .Values.service.portName3 }}
50   {{- else -}}
51   - port: {{ .Values.service.internalPort }}
52     name: {{ .Values.service.portName }}
53     targetPort: {{ .Values.service.portName }}
54   - port: {{ .Values.service.internalPort2 }}
55     name: {{ .Values.service.portName2 }}
56     targetPort: {{ .Values.service.portName2 }}
57   - port: {{ .Values.service.internalPort3 }}
58     name: {{ .Values.service.portName3 }}
59     targetPort: {{ .Values.service.portName }}
60   {{- end}}
61   selector:
62     app: {{ include "common.name" . }}
63     release: {{ include "common.release" . }}