From 0c89a0f745240e5146a5ad990962ef6e16dcd60c Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Wed, 24 Dec 2025 10:50:37 +1100 Subject: [PATCH] Dont show DB containers with .ambassador in the name --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 9b9906a..e158e28 100644 --- a/app.py +++ b/app.py @@ -426,7 +426,7 @@ def collect_admin_data(): "logs": get_container_logs(name, lines=50), "detail": get_container_detail(name) }) - elif classify_infra(name) and ("postgres" in name or "mysql" in name): + elif classify_infra(name) and ("postgres" in name or "mysql" in name) and not name.endswith(".ambassador"): databases.append({ "name": name, "type": "postgres" if "postgres" in name else "mysql"