helm-charts/gotosocial/templates/serviceaccount.yaml

14 lines
395 B
YAML
Raw Normal View History

2024-01-28 11:07:59 +01:00
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "gotosocial.serviceAccountName" . }}
labels:
{{- include "gotosocial.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}