mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 03:54:31 +00:00
Prefer infra-managed manifests for bootstrap; reconcile CNPG instances based on Ready+schedulable labeled db nodes; update manifests to use node-role affinity + anti-affinity; add policy/tests and config touch-ups (incl. prole.cfg).
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"nameOverride": "supabase",
|
|
"fullnameOverride": "supabase",
|
|
"deployment": {
|
|
"db": {
|
|
"enabled": false
|
|
},
|
|
"functions": {
|
|
"enabled": false
|
|
},
|
|
"vector": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"externalDatabase": {
|
|
"enabled": true,
|
|
"host": "prole-db-rw.knoe-db.svc.cluster.local",
|
|
"port": 5432,
|
|
"database": "knoe-db",
|
|
"ssl": "disable",
|
|
"createAliasService": true,
|
|
"aliasServiceName": "db"
|
|
},
|
|
"environment": {
|
|
"auth": {
|
|
"DB_HOST": "prole-db-rw.knoe-db.svc.cluster.local",
|
|
"DB_PORT": "5432",
|
|
"DB_SSL": "disable"
|
|
},
|
|
"analytics": {
|
|
"DB_HOST": "prole-db-rw.knoe-db.svc.cluster.local",
|
|
"DB_PORT": "5432"
|
|
},
|
|
"meta": {
|
|
"DB_HOST": "prole-db-rw.knoe-db.svc.cluster.local",
|
|
"DB_PORT": "5432"
|
|
}
|
|
},
|
|
"secret": {
|
|
"db": {
|
|
"password": "cKujiBPFJ2mZixcE_nPBLrIR56Kafvn4",
|
|
"database": "knoe-db"
|
|
},
|
|
"jwt": {
|
|
"secret": "4e53e1ecb98eb32ee83b890bea79e678e952c6ae237edf3f65f37bf6dd2262eb",
|
|
"anonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlzcyI6InByb2xlLXN1cGFiYXNlIiwiaWF0IjoxNzczODU1MzUyLCJleHAiOjIwODkyMTUzNTJ9.gwl2m4sicomq-Yrf043O5gWfW5776j9fEQgJqEyzpvM",
|
|
"serviceKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoic2VydmljZV9yb2xlIiwiaXNzIjoicHJvbGUtc3VwYWJhc2UiLCJpYXQiOjE3NzM4NTUzNTIsImV4cCI6MjA4OTIxNTM1Mn0.wqg0XKQsHPJRrdyk8cqx_ZdizpJs1YTKZDSBaWeWZzw"
|
|
}
|
|
},
|
|
"ingress": {
|
|
"enabled": true,
|
|
"className": "traefik",
|
|
"hosts": [
|
|
{
|
|
"host": "supabase.prole.org",
|
|
"paths": [
|
|
{
|
|
"path": "/",
|
|
"pathType": "Prefix"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |