freeleaps-ops/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/serviceaccount.yaml

13 lines
394 B
YAML
Raw Normal View History

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "freeleaps-devops-reconciler.serviceAccountName" . }}
labels:
{{- include "freeleaps-devops-reconciler.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: true
{{- end }}