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