Files
AFFiNE-Mirror/.github/helm/affine/charts/graphql/templates/copilot-secret.yaml
2024-04-16 13:33:07 +00:00

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 }}