Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / common / music / components / music-cassandra / templates / service.yaml
1 {{/*
2 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
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.
15 */}}
16 apiVersion: v1
17 kind: Service
18 metadata:
19   name: {{ include "common.servicename" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26   annotations:
27     service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
28 spec:
29   type: {{ .Values.service.type }}
30   # Not working, open k8s bug: https://github.com/kubernetes/kubernetes/issues/58662
31   publishNotReadyAddresses: true
32   ports:
33   {{if eq .Values.service.type "NodePort" -}}
34   - port: {{ .Values.service.internalPort }}
35     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
36     name: {{ .Values.service.portName }}
37   - port: {{ .Values.service.internalPort2 }}
38     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
39     name: {{ .Values.service.portName3 }}
40   - port: {{ .Values.service.internalPort3 }}
41     nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
42     name: {{ .Values.service.portName3 }}
43   {{- else -}}
44   - port: {{ .Values.service.internalPort }}
45     name: {{ .Values.service.portName }}
46   - port: {{ .Values.service.internalPort2 }}
47     name: {{ .Values.service.portName2 }}
48   - port: {{ .Values.service.internalPort3 }}
49     name: {{ .Values.service.portName3 }}
50   {{- end}}
51   selector:
52     app: {{ include "common.name" . }}
53     release: {{ include "common.release" . }}
54   clusterIP: None