Fix yamllint error 'trailing spaces'

Signed-off-by: Yves Schumann <y.schumann@proton.me>
pull/3233/head
Yves Schumann 2025-04-02 15:19:16 +02:00
parent 15ae18e89c
commit e3b5801bf3
No known key found for this signature in database
GPG Key ID: 727EC6B385FF7CB9
4 changed files with 7 additions and 7 deletions

View File

@ -90,7 +90,7 @@ Selector labels
{{- define "argo-workflows.selectorLabels" -}}
{{- if .name -}}
app.kubernetes.io/name: {{ include "argo-workflows.name" .context }}-{{ .name }}
{{ end -}}
{{- end -}}
app.kubernetes.io/instance: {{ .context.Release.Name }}
{{- if .component }}
app.kubernetes.io/component: {{ .component }}

View File

@ -9,7 +9,7 @@ metadata:
{{- with .Values.controller.serviceAccount.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{ with .Values.controller.serviceAccount.annotations }}
{{- with .Values.controller.serviceAccount.annotations }}
annotations:
{{- toYaml .| nindent 4 }}
{{- end }}

View File

@ -1,8 +1,8 @@
{{ range .Values.extraObjects }}
{{- range .Values.extraObjects }}
---
{{ if typeIs "string" . }}
{{- if typeIs "string" . }}
{{- tpl . $ }}
{{- else }}
{{- tpl (toYaml .) $ }}
{{- end }}
{{ end }}
{{- end }}

View File

@ -2,7 +2,7 @@
apiVersion: rbac.authorization.k8s.io/v1
{{- if .Values.singleNamespace }}
kind: RoleBinding
{{ else }}
{{- else }}
kind: ClusterRoleBinding
{{- end }}
metadata:
@ -16,7 +16,7 @@ roleRef:
apiGroup: rbac.authorization.k8s.io
{{- if .Values.singleNamespace }}
kind: Role
{{ else }}
{{- else }}
kind: ClusterRole
{{- end }}
name: {{ template "argo-workflows.server.fullname" . }}