summaryrefslogtreecommitdiffstats
path: root/kubernetes/dcaegen2/templates/nginx-service.yaml
blob: 21dbb04b1427aaeaa76ffdd35e2d8b3a9221feca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#{{ if not .Values.disableDcae }}
apiVersion: v1
kind: Service
metadata:
  name: {{ .Chart.Name }}
  namespace: "{{ .Values.nsPrefix }}-dcaegen2"
  labels:
    app: nginx
spec:
  ports:
    - name: aai-service
      port: 8443
      targetPort: 8443
      nodePort: 30600
    - name: dmaap
      port: 3904
      targetPort: 3904
      nodePort: 30601
    - name: sdc-be
      port: 8443
      targetPort: 8443
      nodePort: 30602
    - name: pdp
      port: 8081
      targetPort: 8081
      nodePort: 30603
    - name: msbapigw
      port: 80
      targetPort: 80
      nodePort: 30604
    - name: multicloud-tinanium
      port: 9005
      targetPort: 9005
      nodePort: 30605
  selector:
    app: nginx
  type: LoadBalancer
  externalTrafficPolicy: Local
#{{ end }}