DMAAP changes
[oom.git] / kubernetes / dmaap / components / message-router / charts / message-router-kafka / templates / service.yaml
1 # Copyright © 2019 AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 {{- $root := . -}}
16 {{ range $i, $e := until (atoi (quote $root.Values.replicaCount) | default 3) }}
17 ---
18 apiVersion: v1
19 kind: Service
20 metadata:
21   name: {{ $root.Values.service.name }}-{{ $i }}
22   namespace: {{ $root.Release.Namespace }}
23   labels:
24     app: {{ $root.Values.service.name }}
25     chart: {{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}
26     release: {{ $root.Release.Name }}
27     heritage: {{ $root.Release.Service }}
28
29 spec:
30   type: {{ $root.Values.service.type }} 
31   externalTrafficPolicy: Local
32   selector:
33    statefulset.kubernetes.io/pod-name: {{ $root.Release.Name }}-{{ $root.Values.service.name }}-{{ $i }}
34   ports:
35     - port: {{ $root.Values.service.externalPort }}
36       targetPort: {{ $root.Values.service.externalPort }}
37       nodePort: {{ $root.Values.service.baseNodePort  | add $i }}
38       name: {{ $root.Values.service.name }}-{{ $i }}
39 {{ end }}