diff --git a/charts/argo-rollouts/Chart.yaml b/charts/argo-rollouts/Chart.yaml index a6e59f26..6edff070 100644 --- a/charts/argo-rollouts/Chart.yaml +++ b/charts/argo-rollouts/Chart.yaml @@ -11,5 +11,4 @@ maintainers: - name: jessesuen annotations: artifacthub.io/changes: | - - "[Changed]: updated rollouts version to 1.1.0 and updated CRDs to reflect the version bump" - "[Added]: Ability to set the type of Service on the dashboard Service. diff --git a/charts/argo-rollouts/templates/dashboard/service.yaml b/charts/argo-rollouts/templates/dashboard/service.yaml index c950fb3a..b8605c58 100644 --- a/charts/argo-rollouts/templates/dashboard/service.yaml +++ b/charts/argo-rollouts/templates/dashboard/service.yaml @@ -11,7 +11,7 @@ metadata: {{- toYaml . | nindent 4 }} {{- end }} spec: - type: {{ .Values.dashboard.serviceType | default "ClusterIP" }} + type: {{ .Values.dashboard.service.type }} ports: - name: dashboard protocol: TCP diff --git a/charts/argo-rollouts/values.yaml b/charts/argo-rollouts/values.yaml index 0ca86c93..a19dde08 100644 --- a/charts/argo-rollouts/values.yaml +++ b/charts/argo-rollouts/values.yaml @@ -114,7 +114,8 @@ dashboard: podSecurityContext: runAsNonRoot: true containerSecurityContext: {} - serviceType: ClusterIP + service: + tType: ClusterIP serviceAccount: create: true annotations: {}