summaryrefslogtreecommitdiffstats
path: root/kud/tests/openness/eaa/helm/eaa/templates/eaa-service.yaml
blob: d9ee90ddb5cae2dde81f1f3e188b2a48bf757efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
apiVersion: v1
kind: Service
metadata:
  name: {{ .Values.service.eaa.name }}
  namespace: {{ .Release.Namespace }}
spec:
  clusterIP: {{ .Values.service.eaa.clusterIP }}
  selector:
    name: eaa
  ports:
    - name: {{ .Values.service.eaa.httpPortName}}
      protocol: {{ .Values.service.eaa.httpProtocol}}
      port: {{ .Values.service.eaa.httpPort }}
      targetPort: {{ .Values.service.eaa.httpTargetPort }}
    - name: {{ .Values.service.eaa.httpsPortName }}
      protocol: {{ .Values.service.eaa.httpsProtocol }}
      port: {{ .Values.service.eaa.httpsPort }}
      targetPort: {{ .Values.service.eaa.httpsTargetPort }}