workflow-test/charts/azure-agent/templates/serviceaccount.yaml
Jonas Forsberg 13e65a8b5b
Some checks failed
Testing pipes / Explore-Gitea-Actions (push) Successful in 42s
Lint and Test Charts / lint-test (push) Failing after 55s
.
2024-10-15 10:11:11 +02:00

13 lines
402 B
YAML

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