mirror of
https://github.com/casdoor/casdoor.git
synced 2025-08-02 18:50:32 +08:00

Signed-off-by: henrywangx <henrywangx@gmail.com> Co-authored-by: xiong wang <xiong.wang@inceptio.ai>
13 lines
320 B
YAML
13 lines
320 B
YAML
{{- if .Values.serviceAccount.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "casdoor.serviceAccountName" . }}
|
|
labels:
|
|
{{- include "casdoor.labels" . | nindent 4 }}
|
|
{{- with .Values.serviceAccount.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|