Files
service-catalog/manifests/helm/unitycatalog/0.2.0/templates/serviceaccount.yaml
T
2026-01-19 16:11:44 +09:00

14 lines
405 B
YAML

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