fix(argo-workflows): Prevent extra whitespace in controller ConfigMap (#2399)
Signed-off-by: Josia <josiarodriguez@gmail.com>
This commit is contained in:
parent
91f48f37cd
commit
c962ee500c
2 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@ appVersion: v3.5.2
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.40.1
|
version: 0.40.2
|
||||||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
@ -17,4 +17,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: "Remove duplication in aggregated admin ClusterRole"
|
description: "Prevent extra whitespace in controller ConfigMap"
|
||||||
|
|
|
@ -145,7 +145,7 @@ data:
|
||||||
rbac:
|
rbac:
|
||||||
enabled: {{ .Values.server.sso.rbac.enabled }}
|
enabled: {{ .Values.server.sso.rbac.enabled }}
|
||||||
{{- with .Values.server.sso.scopes }}
|
{{- with .Values.server.sso.scopes }}
|
||||||
scopes: {{ toYaml . | nindent 8 }}
|
scopes: {{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.server.sso.issuerAlias }}
|
{{- with .Values.server.sso.issuerAlias }}
|
||||||
issuerAlias: {{ toYaml . }}
|
issuerAlias: {{ toYaml . }}
|
||||||
|
@ -163,7 +163,7 @@ data:
|
||||||
insecureSkipVerify: {{ toYaml . }}
|
insecureSkipVerify: {{ toYaml . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.server.sso.filterGroupsRegex }}
|
{{- with .Values.server.sso.filterGroupsRegex }}
|
||||||
filterGroupsRegex: {{ toYaml . | nindent 8 }}
|
filterGroupsRegex: {{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.controller.workflowRestrictions }}
|
{{- with .Values.controller.workflowRestrictions }}
|
||||||
|
|
Loading…
Reference in a new issue