prole/supabase/helm/generated/values.generated.json
chrisfu 5e0a1bda85 feat: Add GitOps (Gitea) and Supabase integration, plus database options
- Makefile: Added 'init' and 'deploy' targets for k3s parity and Gitea staging.

- OpenTofu: Fixed namespace handling in k3s main.tf to prevent metadata overwrites.

- UI: Added 'GitOps' and 'Database Options' configuration screens.

- Core: Enhanced monitoring, milestones, and environment handling for new services.

- Supabase: Integrated full Helm chart and manifest rendering logic.

- Gitea: Added deployment scripts and GitOps sync support.

- Database: Added Percona/Postgres Dockerfile templates and improved TDE scripts.

- Tests: Added coverage for new UI screens and navigation flows.
2026-02-26 18:32:15 -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/${NAMESPACE}/db#password}",
"database": "${NAMESPACE}"
},
"jwt": {
"secret": "4e53e1ecb98eb32ee83b890bea79e678e952c6ae237edf3f65f37bf6dd2262eb",
"anonKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlzcyI6InByb2xlLXN1cGFiYXNlIiwiaWF0IjoxNzcyMDk5NDM2LCJleHAiOjIwODc0NTk0MzZ9.NM4QHNzdWWSyvvBm-xiHdFJm8T12cROyGhvrx2eMaPk",
"serviceKey": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoic2VydmljZV9yb2xlIiwiaXNzIjoicHJvbGUtc3VwYWJhc2UiLCJpYXQiOjE3NzIwOTk0MzYsImV4cCI6MjA4NzQ1OTQzNn0.53NMhvhhEmCQRJQ_UW5Cc6TRMI3X0Zrf4gmiMNjU2As"
}
},
"ingress": {
"enabled": true,
"className": "traefik",
"hosts": [
{
"host": "supabase.prole.org",
"paths": [
{
"path": "/",
"pathType": "Prefix"
}
]
}
]
}
}