Files
AFFiNE-Mirror/.github/helm/affine/charts/graphql/templates/copilot-secret.yaml
darkskygit e6a576551a feat: add copilot impl (#6230)
fix CLOUD-22
fix CLOUD-24
2024-04-10 11:15:32 +00:00

10 lines
216 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 }}
{{- end }}