From 61f4b3a192df2aed9a98dbd1d65b46c165666de1 Mon Sep 17 00:00:00 2001 From: Pramod Date: Mon, 29 Apr 2019 17:36:20 -0700 Subject: Adding helm charts for gloo ingress controller Helm charts for gloo with support for Kubernetes ingress Issue-ID: ONAPARC-491 Change-Id: Ia6342f79edef19120da4c28f376a3399991a8310 Signed-off-by: Pramod --- .../templates/16-clusteringress-proxy-service.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 vnfs/DAaaS/00-init/gloo/templates/16-clusteringress-proxy-service.yaml (limited to 'vnfs/DAaaS/00-init/gloo/templates/16-clusteringress-proxy-service.yaml') diff --git a/vnfs/DAaaS/00-init/gloo/templates/16-clusteringress-proxy-service.yaml b/vnfs/DAaaS/00-init/gloo/templates/16-clusteringress-proxy-service.yaml new file mode 100755 index 00000000..7e25bee9 --- /dev/null +++ b/vnfs/DAaaS/00-init/gloo/templates/16-clusteringress-proxy-service.yaml @@ -0,0 +1,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 }} \ No newline at end of file -- cgit 1.2.3-korg