Collectd operator utilties
[demo.git] / vnfs / DAaaS / 00-init / gloo / templates / 13-ingress-proxy-service.yaml
1 {{- if .Values.ingress.enabled }}
2 apiVersion: v1
3 kind: Service
4 metadata:
5   labels:
6     app: gloo
7     gloo: ingress-proxy
8   name: ingress-proxy
9   namespace: {{ .Release.Namespace }}
10 spec:
11   ports:
12   - port: {{ .Values.ingressProxy.deployment.httpPort }}
13     protocol: TCP
14     name: http
15   - port: {{ .Values.ingressProxy.deployment.httpsPort }}
16     protocol: TCP
17     name: https
18   selector:
19     gloo: ingress-proxy
20   type: LoadBalancer
21
22
23 {{- end }}