supabase-operator/config/samples/supabase_v1alpha1_core.yaml

37 lines
1.1 KiB
YAML
Raw Normal View History

---
apiVersion: supabase.k8s.icb4dc0.de/v1alpha1
kind: Core
metadata:
2025-01-28 18:01:34 +01:00
name: core-sample
labels:
app.kubernetes.io/name: supabase-operator
app.kubernetes.io/managed-by: kustomize
spec:
2025-01-22 08:38:36 +01:00
# public URL of the Supabase instance (API)
# normally the Ingress/HTTPRoute endpoint
externalUrl: http://localhost:8000/
2025-01-22 08:38:36 +01:00
# public URL of the frontend
# could be the same as the externalUrl if you're using one Ingress/HTTPRoute for both
# or a different one if you prefer to separate API and frontend URLs
# will be used by Supabase Auth to redirect users after login
siteUrl: http://localhost:3000/
database:
2025-01-22 08:38:36 +01:00
dsnSecretRef:
2025-01-28 18:01:34 +01:00
# name of the secret containing the database DSN
name: supabase-demo-credentials
key: url
auth:
enableEmailAutoconfirm: true
providers: {}
postgrest:
maxRows: 1000
jwt:
expiry: 3600
2025-01-22 08:38:36 +01:00
# name of the secret containing the JWT secret
2025-01-28 18:01:34 +01:00
# will be created if not found, make sure to refernce this secret in:
# - APIGateway
# - Dashboard-
# - Storage
2025-01-22 08:38:36 +01:00
secretName: core-sample-jwt