mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- Fix kube context switching for k3s single-context kubeconfigs and k3d shorthand prefixes - Update common init/status scripts (registry, kerberos, cnpg backup, service layer, common services) - Add Gitea init script and installer ArgoCD screen - Add Supabase realtime probe patching plus regression tests - Extend installer core/UI test coverage
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"nameOverride": "supabase",
|
|
"fullnameOverride": "supabase",
|
|
"deployment": {
|
|
"db": {
|
|
"enabled": false
|
|
},
|
|
"functions": {
|
|
"enabled": false
|
|
},
|
|
"vector": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"environment": {
|
|
"auth": {
|
|
"DB_HOST": "prole-db-rw.${NAMESPACE}.svc.cluster.local",
|
|
"DB_PORT": "5432",
|
|
"DB_SSL": "disable"
|
|
},
|
|
"analytics": {
|
|
"DB_HOST": "prole-db-rw.${NAMESPACE}.svc.cluster.local",
|
|
"DB_PORT": "5432"
|
|
},
|
|
"meta": {
|
|
"DB_HOST": "prole-db-rw.${NAMESPACE}.svc.cluster.local",
|
|
"DB_PORT": "5432"
|
|
}
|
|
},
|
|
"secret": {
|
|
"db": {
|
|
"password": "fr3styl3",
|
|
"database": "postgres"
|
|
},
|
|
"jwt": {
|
|
"secret": "4e53e1ecb98eb32ee83b890bea79e678e952c6ae237edf3f65f37bf6dd2262eb",
|
|
"anonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlzcyI6InByb2xlLXN1cGFiYXNlIiwiaWF0IjoxNzczNTM4MjkyLCJleHAiOjIwODg4OTgyOTJ9.PoUrud3YpPeuw_sR1PRgLdFatkqoi6hag8kRERh-bE0",
|
|
"serviceKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoic2VydmljZV9yb2xlIiwiaXNzIjoicHJvbGUtc3VwYWJhc2UiLCJpYXQiOjE3NzM1MzgyOTIsImV4cCI6MjA4ODg5ODI5Mn0.rFJn8pV-MhsG1QdqUCVFdppU69aunUh6TPjGzluh5Ic"
|
|
}
|
|
},
|
|
"ingress": {
|
|
"enabled": true,
|
|
"className": "traefik",
|
|
"hosts": [
|
|
{
|
|
"host": "supabase.prole.org",
|
|
"paths": [
|
|
{
|
|
"path": "/",
|
|
"pathType": "Prefix"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |