From 51d89b2289c676bcdb34c12ca84c311d48e08dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Thu, 23 Jul 2026 18:10:01 +0400 Subject: [PATCH] Remove VM and Grafana from infra list --- site/routes/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/routes/main.py b/site/routes/main.py index 341c93c..256cd27 100644 --- a/site/routes/main.py +++ b/site/routes/main.py @@ -55,7 +55,7 @@ def index(): raw_svc = get_services(client) services = sorted(raw_svc, key=lambda s: (s.get("svcId", 0), s.get("svc", ""))) # инфраструктурные сервисы (платформа/среда) - infra_ids = {2, 12, 21, 22, 25, 26, 27, 28, 29, 110, 111, 112, 150} + infra_ids = {2, 12, 21, 22, 25, 26, 29, 110, 111, 150} raw_inst = get_instances(client) instances = [i for i in raw_inst if i.get("explainedStatus") not in ("deleted", "not created")