prole/supabase/helm/generated/values.generated.json
chrisfu 6dc3560dcf refactor: rename backup script to etc/init_cnpg_backup.sh and optimize Supabase image prefetch
- Renamed etc/init_prole-db-backup.sh to etc/init_cnpg_backup.sh and updated all references.

- Enhanced CNPG backup script with authoritative status validation.

- Implemented SupabaseImagePreloadMilestone to front-load heavy image transfers.

- Updated supabase/deploy.sh with --prefetch-images-only and --skip-prefetch.

- Updated unit tests for CNPG backups and Supabase silent milestone sequencing.

- Included incidental environment updates from installer execution.

Co-authored-by: Junie <junie@jetbrains.com>
2026-03-02 00:34:01 -08:00

56 lines
1.5 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": "${OPENBAO:kv/prole/prole-db001/db#password}",
"database": "postgres"
},
"jwt": {
"secret": "4e53e1ecb98eb32ee83b890bea79e678e952c6ae237edf3f65f37bf6dd2262eb",
"anonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlzcyI6InByb2xlLXN1cGFiYXNlIiwiaWF0IjoxNzcyNDM0NjM4LCJleHAiOjIwODc3OTQ2Mzh9.Wg05U6ioVntunXskmJs3DXMc1i9-O7UBts2cnBwPCoI",
"serviceKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoic2VydmljZV9yb2xlIiwiaXNzIjoicHJvbGUtc3VwYWJhc2UiLCJpYXQiOjE3NzI0MzQ2MzgsImV4cCI6MjA4Nzc5NDYzOH0.xZ179fB412UFdgDxc8XUv2EQt-L1nGyhocll09u2u38"
}
},
"ingress": {
"enabled": true,
"className": "traefik",
"hosts": [
{
"host": "supabase.prole.org",
"paths": [
{
"path": "/",
"pathType": "Prefix"
}
]
}
]
}
}