prole/supabase/helm/generated/values.generated.json
chrisfu 7efb2331f6 checkpoint: service env config + installer updates
- Expand generated service config (conf/service/prole.cfg) with captured inputs and derived vars

- Update installer core (actions/controller/env) and UI screens (services/argocd)

- Update monitoring init script and port mapping

- Update k8s prole-db manifests; add monitoring PV + StorageClass

- Add dev/test config templates and postgresql version file

- Update supabase generated helm values; bump prole-db version

- Extend installer tests incl. ArgoCD render smoke
2026-03-17 09:29:08 -07:00

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.eyJyb2xlIjoiYW5vbiIsImlzcyI6InByb2xlLXN1cGFiYXNlIiwiaWF0IjoxNzczNzMxOTI1LCJleHAiOjIwODkwOTE5MjV9.78yBHvRLKDnDwbuhLCcW9p_cK_4wEzf0uikv7wmcaVQ",
"serviceKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoic2VydmljZV9yb2xlIiwiaXNzIjoicHJvbGUtc3VwYWJhc2UiLCJpYXQiOjE3NzM3MzE5MjUsImV4cCI6MjA4OTA5MTkyNX0.eqbXqgKg_S7CiZDq0asTdbPlF2gwft5NGtLWpgDFOmo"
}
},
"ingress": {
"enabled": true,
"className": "traefik",
"hosts": [
{
"host": "supabase.prole.org",
"paths": [
{
"path": "/",
"pathType": "Prefix"
}
]
}
]
}
}