From 5247f5d0e2d5306458ad4fc6bd0c368c2f8d2d6b 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. --- 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