* fix(argo-workflows): fixed server sa annotations Signed-off-by: abhinav.khanna <abhinav.khanna@salesforce.com> * fix(argo-workflows): fixed ingress Signed-off-by: abhinav.khanna <abhinav.khanna@salesforce.com> * chore(argo-workflows): version bump Signed-off-by: abhinav.khanna <abhinav.khanna@salesforce.com> Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com>
10 lines
317 B
YAML
10 lines
317 B
YAML
{{- if and .Values.server.enabled .Values.server.serviceAccount.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "argo-workflows.serverServiceAccountName" . }}
|
|
{{- with .Values.server.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|