helm-charts/gotosocial/templates/serviceaccount.yaml
2024-01-29 22:26:41 +01:00

13 lines
395 B
YAML

{{- 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 }}