mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
14 lines
470 B
YAML
14 lines
470 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 }}
|
|
googleSecret: {{ .Values.app.copilot.google.key | b64enc }}
|
|
perplexitySecret: {{ .Values.app.copilot.perplexity.key | b64enc }}
|
|
unsplashSecret: {{ .Values.app.copilot.unsplash.key | b64enc }}
|
|
{{- end }}
|