[DMAAP] DMaaP ServiceMesh compatibility
[oom.git] / kubernetes / dmaap / components / message-router / components / message-router-kafka / templates / service.yaml
1 {{/*
2 # Copyright © 2019 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
17 {{- $root := . -}}
18 {{ range $i, $e := until (int $root.Values.replicaCount) }}
19 ---
20 apiVersion: v1
21 kind: Service
22 metadata:
23   name: {{ $root.Values.service.name }}-{{ $i }}
24   namespace: {{ include "common.namespace" $root }}
25   labels:
26     app: {{ $root.Values.service.name }}
27     chart: {{ $root.Chart.Name }}-{{ $root.Chart.Version | replace "+" "_" }}
28     release: {{ include "common.release" $root }}
29     heritage: {{ $root.Release.Service }}
30
31 spec:
32   type: {{ $root.Values.service.type }}
33   externalTrafficPolicy: Local
34   selector:
35     statefulset.kubernetes.io/pod-name: {{ include "common.release" $root }}-{{ $root.Values.service.name }}-{{ $i }}
36   ports:
37     - port: {{ $root.Values.service.externalPort }}
38       targetPort: {{ $root.Values.service.externalPort }}
39       nodePort: {{ $root.Values.service.baseNodePort  | add $i }}
40       name: {{ $root.Values.service.name }}-{{ $i }}
41 {{ end }}