From 236a900cf07e28007d7a9aee1852d43855ae846a Mon Sep 17 00:00:00 2001 From: MrWetsnow <509887+DanTulovsky@users.noreply.github.com> Date: Fri, 15 Oct 2021 20:54:21 -0400 Subject: [PATCH] Add type to Dashboard Service Add ability to specify a serviceType for dashboard. (We have to run it as a NodePort.). Default to ClusterIP - which is the default if nothing is specified. Signed-off-by: Dan Tulovsky --- charts/argo-rollouts/templates/dashboard/service.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/argo-rollouts/templates/dashboard/service.yaml b/charts/argo-rollouts/templates/dashboard/service.yaml index d2bd432b..c950fb3a 100644 --- a/charts/argo-rollouts/templates/dashboard/service.yaml +++ b/charts/argo-rollouts/templates/dashboard/service.yaml @@ -11,6 +11,7 @@ metadata: {{- toYaml . | nindent 4 }} {{- end }} spec: + type: {{ .Values.dashboard.serviceType | default "ClusterIP" }} ports: - name: dashboard protocol: TCP