HelmChartSammlung/charts/audiobookshelf/templates/serviceaccount.yaml
Marko Oldenburg 04b0eb4eb6 first init
2024-10-29 06:40:32 +01:00

14 lines
403 B
YAML

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