mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 20:08:37 +00:00
12 lines
404 B
YAML
12 lines
404 B
YAML
{{- if .Values.global.objectStorage.r2.enabled -}}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ .Values.global.objectStorage.r2.secretName }}"
|
|
type: Opaque
|
|
data:
|
|
accountId: {{ .Values.global.objectStorage.r2.accountId | b64enc }}
|
|
accessKeyId: {{ .Values.global.objectStorage.r2.accessKeyId | b64enc }}
|
|
secretAccessKey: {{ .Values.global.objectStorage.r2.secretAccessKey | b64enc }}
|
|
{{- end }}
|