Files
service-catalog/charts/unitycatalog/templates/serviceaccount.yaml
T
2025-05-22 16:29:01 +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 }}