mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-10 19:38:39 +00:00
12 lines
338 B
YAML
12 lines
338 B
YAML
{{- if .Values.app.copilot.enabled -}}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: "{{ .Values.app.copilot.secretName }}"
|
|
type: Opaque
|
|
data:
|
|
openaiSecret: {{ .Values.app.copilot.openai.key | b64enc }}
|
|
falSecret: {{ .Values.app.copilot.fal.key | b64enc }}
|
|
unsplashSecret: {{ .Values.app.copilot.unsplash.key | b64enc }}
|
|
{{- end }}
|