Files
DataMate/deployment/helm/datamate/charts/runtime/templates/serviceaccount.yaml
hhhhsc701 f730bd5b0c bugfix: 支持使用runtime单实例 (#118)
* bugfix: 支持使用runtime单实例
2025-12-01 19:05:50 +08:00

14 lines
389 B
YAML

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