aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml')
-rwxr-xr-xvnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml35
1 files changed, 0 insertions, 35 deletions
diff --git a/vnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml b/vnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml
deleted file mode 100755
index f0b7d347..00000000
--- a/vnfs/DAaaS/deploy/00-init/gloo/templates/8-gateway-proxy-service.yaml
+++ /dev/null
@@ -1,35 +0,0 @@
-{{- if .Values.gateway.enabled }}
-{{- range $key, $spec := .Values.gatewayProxies }}
----
-apiVersion: v1
-kind: Service
-metadata:
- labels:
- app: gloo
- gloo: {{ $key }}
- name: {{ $key }}
- namespace: {{ $.Release.Namespace }}
- {{- with $spec.service.extraAnnotations }}
- annotations:
-{{toYaml . | indent 8}}{{- end }}
-spec:
- ports:
- - port: {{ $spec.service.httpPort }}
- targetPort: {{ $spec.deployment.httpPort }}
- protocol: TCP
- name: http
- - port: {{ $spec.service.httpsPort }}
- targetPort: {{ $spec.deployment.httpsPort }}
- protocol: TCP
- name: https
- selector:
- gloo: {{ $key }}
- type: {{ $spec.service.type }}
- {{- if and (eq $spec.service.type "ClusterIP") $spec.service.clusterIP }}
- clusterIP: {{ $spec.service.clusterIP }}
- {{- end }}
- {{- if and (eq $spec.service.type "LoadBalancer") $spec.service.loadBalancerIP }}
- loadBalancerIP: {{ $spec.service.loadBalancerIP }}
- {{- end }}
-{{- end }}
-{{- end }}