merlyn/cloud-deployments/helm/charts/anythingllm/templates/serviceaccount.yaml
Sam Culley 988a14e67e
Adding AnythingLLM Helm Chart (#4484)
feat: adding helm chart

Co-authored-by: Sam Culley <sam.culley@novatiq.com>
2025-10-03 09:27:34 -07:00

14 lines
397 B
YAML

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