30 lines
939 B
JSON
30 lines
939 B
JSON
{
|
|
"format_version": 1,
|
|
"default_profile": "postgres_default",
|
|
"profiles": [
|
|
{
|
|
"profile_id": "postgres_default",
|
|
"backend": "postgres",
|
|
"postgres": {
|
|
"connection_uri": "${KSP_SECRET_STORE_POSTGRES_URI:-postgresql://localhost/ksp}",
|
|
"pool": {
|
|
"max_connections": 8,
|
|
"connect_timeout_ms": 10000,
|
|
"wait_timeout_ms": 5000,
|
|
"create_timeout_ms": 10000,
|
|
"recycle_timeout_ms": 5000
|
|
},
|
|
"tls": {
|
|
"mode": "verify_full"
|
|
},
|
|
"bootstrap": {
|
|
"auto_migrate": true,
|
|
"migration_timeout_ms": 30000,
|
|
"migration_lock_timeout_ms": 10000
|
|
},
|
|
"shutdown_timeout_ms": 5000
|
|
}
|
|
}
|
|
]
|
|
}
|