mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 06:24:31 +00:00
- 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.
56 lines
1.5 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |