forked from argoproj/argo-helm
11 lines
297 B
YAML
11 lines
297 B
YAML
{{- if .Values.controller.serviceAccount.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "argo-workflows.controllerServiceAccountName" . }}
|
|
{{ with .Values.controller.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml .| nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|