argocd-helm/charts/argocd-applicationset/templates/serviceaccount.yaml
chgl f80ab1a2fb
fix(argocd-applicationset): corrected chart directory name (#672)
* fix: corrected argocd-applicationset chart dir

Signed-off-by: chgl <chgl@users.noreply.github.com>

* bumped chart version

Signed-off-by: chgl <chgl@users.noreply.github.com>

Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com>
2021-04-21 14:42:16 +02:00

12 lines
344 B
YAML

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "argo-applicationset.serviceAccountName" . }}
labels:
{{- include "argo-applicationset.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}