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"