2025-01-04 17:07:49 +01:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Secret
|
|
|
|
metadata:
|
|
|
|
name: supabase-demo-credentials
|
|
|
|
stringData:
|
|
|
|
url: postgresql://supabase_admin:1n1t-R00t!@cluster-example-rw.supabase-demo:5432/app
|
|
|
|
---
|
2024-12-13 09:09:14 +01:00
|
|
|
apiVersion: supabase.k8s.icb4dc0.de/v1alpha1
|
|
|
|
kind: Core
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: supabase-operator
|
|
|
|
app.kubernetes.io/managed-by: kustomize
|
|
|
|
name: core-sample
|
|
|
|
spec:
|
2025-01-22 08:38:36 +01:00
|
|
|
# public URL of the Supabase instance (API)
|
|
|
|
# normally the Ingress/HTTPRoute endpoint
|
2025-01-11 16:51:05 +01:00
|
|
|
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
|
2025-01-11 16:51:05 +01:00
|
|
|
siteUrl: http://localhost:3000/
|
2024-12-13 09:09:14 +01:00
|
|
|
database:
|
2025-01-22 08:38:36 +01:00
|
|
|
dsnSecretRef:
|
2025-01-04 17:07:49 +01:00
|
|
|
name: supabase-demo-credentials
|
2024-12-13 09:09:14 +01:00
|
|
|
key: url
|
2025-01-04 17:07:49 +01:00
|
|
|
auth:
|
2025-01-22 08:38:36 +01:00
|
|
|
disableSignup: false
|
2025-01-04 17:07:49 +01:00
|
|
|
enableEmailAutoconfirm: true
|
|
|
|
providers: {}
|
2025-01-11 16:51:05 +01:00
|
|
|
postgrest:
|
|
|
|
maxRows: 1000
|
|
|
|
jwt:
|
|
|
|
expiry: 3600
|
2025-01-22 08:38:36 +01:00
|
|
|
# name of the secret containing the JWT secret
|
|
|
|
# will be created if not found, make sure to refernce this secret in the APIGateway, Dashboard and Storage
|
|
|
|
secretName: core-sample-jwt
|