blob: b2f0ad6812e7578b3abd083000e9e15ab0034a59 [file] [log] [blame]
RehanRaza2482dc92021-09-22 18:14:27 +02001################################################################################
2# Copyright (c) 2021 Nordix Foundation. #
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
17kind: Service
18apiVersion: v1
19metadata:
20 name: {{ include "common.name.dmaapadapterservice" . }}
21 namespace: {{ include "common.namespace.nonrtric" . }}
22 labels:
23 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.dmaapadapterservice" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25 release: {{ .Release.Name }}
26 heritage: {{ .Release.Service }}
27spec:
28 ports:
29 {{if eq .Values.dmaapadapterservice.service.allowHttp true -}}
30 - name: {{ index .Values.dmaapadapterservice.service.httpName }}
31 port: {{ .Values.dmaapadapterservice.service.internalPort1 }}
32 targetPort: {{ .Values.dmaapadapterservice.service.targetPort1 }}
33 protocol: TCP
34 {{- end }}
35 - name: {{ index .Values.dmaapadapterservice.service.httpsName }}
36 port: {{ .Values.dmaapadapterservice.service.internalPort2 }}
37 targetPort: {{ .Values.dmaapadapterservice.service.targetPort2 }}
38 protocol: TCP
39 selector:
40 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.dmaapadapterservice" . }}
41 release: {{ .Release.Name }}
42 type: ClusterIP