diff --git a/charts/zuul/templates/web/service.yaml b/charts/zuul/templates/web/service.yaml index 13a98aa..4dc39e7 100644 --- a/charts/zuul/templates/web/service.yaml +++ b/charts/zuul/templates/web/service.yaml @@ -8,7 +8,7 @@ metadata: labels: {{- include "zuul.web.labels" . | indent 4 }} spec: - type: ClusterIP + type: {{ .Values.web.serviceType }} ports: - name: zuul-web port: {{ .Values.web.port }} diff --git a/charts/zuul/values.yaml b/charts/zuul/values.yaml index 91608b9..638f803 100644 --- a/charts/zuul/values.yaml +++ b/charts/zuul/values.yaml @@ -20,6 +20,7 @@ web: enabled: true replicas: 3 port: 9000 + serviceType: ClusterIP ingress: enabled: false