Fix Zitadel health check and add ss command to allowed commands
All checks were successful
BotServer CI/CD / build (push) Successful in 3m20s

- Add 'ss' to ALLOWED_COMMANDS for port checking
- Fix Zitadel health check URL to include full address
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-11 07:49:11 -03:00
parent 5576378b3f
commit dd4c780c4d
2 changed files with 2 additions and 1 deletions

View file

@ -226,7 +226,7 @@ pub fn zitadel_health_check() -> bool {
"2",
"-m",
"3",
"/debug/healthz",
"http://localhost:8300/debug/healthz",
])
})
.and_then(|c| c.execute());

View file

@ -51,6 +51,7 @@ static ALLOWED_COMMANDS: LazyLock<HashSet<&'static str>> = LazyLock::new(|| {
"true",
"rm",
"find",
"ss",
// Test/dev utilities
"cargo",
"redis-server",