blob: 633898c213c7931e09c5e7d747c1487e4a9e534b [file] [log] [blame]
econwar28266fa2019-03-05 16:39:00 +00001# Copyright © 2017 Amdocs, Bell Canada
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
15apiVersion: v1
16kind: Service
17metadata:
18 name: {{.Values.config.dmaapDrNode.name}}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25 annotations:
26 service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
27spec:
28 type: {{.Values.config.dmaapDrNode.servicetype}}
29 ports:
30 {{if eq .Values.config.dmaapDrNode.servicetype "NodePort" -}}
efiacor16669c52019-05-14 09:10:20 +000031 {{- if .Values.global.allow_http }}
econwar28266fa2019-03-05 16:39:00 +000032 - port: {{.Values.config.dmaapDrNode.externalPort}}
33 targetPort: {{.Values.config.dmaapDrNode.internalPort}}
efiacor17888832019-05-13 16:36:36 +000034 nodePort: {{ .Values.global.nodePortPrefixExt | default .Values.nodePortPrefixExt }}{{.Values.config.dmaapDrNode.nodePort}}
econwar28266fa2019-03-05 16:39:00 +000035 name: {{.Values.config.dmaapDrNode.name}}
efiacor16669c52019-05-14 09:10:20 +000036 {{- end}}
econwar28266fa2019-03-05 16:39:00 +000037 - port: {{.Values.config.dmaapDrNode.externalPort2}}
38 targetPort: {{.Values.config.dmaapDrNode.internalPort2}}
efiacor17888832019-05-13 16:36:36 +000039 nodePort: {{ .Values.global.nodePortPrefixExt | default .Values.nodePortPrefixExt }}{{.Values.config.dmaapDrNode.nodePort2}}
econwar28266fa2019-03-05 16:39:00 +000040 name: {{.Values.config.dmaapDrNode.name}}2
41 {{- else -}}
42 - port: {{.Values.config.dmaapDrNode.externalPort}}
43 targetPort: {{.Values.config.dmaapDrNode.internalPort}}
44 name: {{.Values.config.dmaapDrNode.name}}
45 - port: {{.Values.config.dmaapDrNode.externalPort2}}
46 targetPort: {{.Values.config.dmaapDrNode.internalPort2}}
47 name: {{.Values.config.dmaapDrNode.name}}2
48 {{- end}}
49 selector:
50 app: {{ include "common.name" . }}
51 release: {{ .Release.Name }}