summaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/00-init/gloo/templates/13-ingress-proxy-service.yaml
blob: 583e8bcd5f34c4a715c2b65fd98a7ba32f9e7992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- if .Values.ingress.enabled }}
apiVersion: v1
kind: Service
metadata:
  labels:
    app: gloo
    gloo: ingress-proxy
  name: ingress-proxy
  namespace: {{ .Release.Namespace }}
spec:
  ports:
  - port: {{ .Values.ingressProxy.deployment.httpPort }}
    protocol: TCP
    name: http
  - port: {{ .Values.ingressProxy.deployment.httpsPort }}
    protocol: TCP
    name: https
  selector:
    gloo: ingress-proxy
  type: LoadBalancer


{{- end }}