[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / portal / components / portal-cassandra / templates / service.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 spec:
27   type: {{ .Values.service.type }}
28   ports:
29     {{if eq .Values.service.type "NodePort" -}}
30     - port: {{ .Values.service.externalPort }}
31       targetPort: {{ .Values.service.internalPort }}
32       nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort }}
33       name: {{ .Values.service.portName }}
34     - port: {{ .Values.service.externalPort2 }}
35       targetPort: {{ .Values.service.internalPort2 }}
36       nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort2 }}
37       name: {{ .Values.service.portName }}2
38     - port: {{ .Values.service.externalPort3 }}
39       targetPort: {{ .Values.service.internalPort3 }}
40       nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort3 }}
41       name: {{ .Values.service.portName }}3
42     - port: {{ .Values.service.externalPort4 }}
43       targetPort: {{ .Values.service.internalPort4 }}
44       nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort4 }}
45       name: {{ .Values.service.portName }}4
46     - port: {{ .Values.service.externalPort5 }}
47       targetPort: {{ .Values.service.internalPort5 }}
48       nodePort: {{ .Values.global.nodePortPrefix | default .Values.nodePortPrefix }}{{ .Values.service.nodePort5 }}
49       name: {{ .Values.service.portName }}5
50
51     {{- else -}}
52     - port: {{ .Values.service.externalPort }}
53       targetPort: {{ .Values.service.internalPort }}
54       name: {{ .Values.service.portName }}
55     - port: {{ .Values.service.externalPort2 }}
56       targetPort: {{ .Values.service.internalPort2 }}
57       name: {{ .Values.service.portName }}2
58     - port: {{ .Values.service.externalPort3 }}
59       targetPort: {{ .Values.service.internalPort3 }}
60       name: {{ .Values.service.portName }}3
61     - port: {{ .Values.service.externalPort4 }}
62       targetPort: {{ .Values.service.internalPort4 }}
63       name: {{ .Values.service.portName }}4
64     - port: {{ .Values.service.externalPort5 }}
65       targetPort: {{ .Values.service.internalPort5 }}
66       name: {{ .Values.service.portName }}5
67     {{- end}}
68   selector:
69     app: {{ include "common.name" . }}
70     release: {{ include "common.release" . }}