From 08031a6dd5ad90feef4e1a348c69db44cecbe36d Mon Sep 17 00:00:00 2001 From: Varac <varac@varac.net> Date: Wed, 22 Dec 2021 17:22:52 +0100 Subject: [PATCH] Ignore KubeProxy alert Closes: #1105 --- test/pytest/test_prometheus.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/pytest/test_prometheus.py b/test/pytest/test_prometheus.py index 7e90f0d87..542bad0b0 100755 --- a/test/pytest/test_prometheus.py +++ b/test/pytest/test_prometheus.py @@ -21,7 +21,8 @@ def ignore_alert(alert): return True # Ignore issues fom high load during installation phase - if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising)", + # KubeProxyDown: https://open.greenhost.net/stackspin/stackspin/-/issues/1105 + if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising|KubeProxyDown)", alert["labels"]["alertname"]): return True # Ignore nextcloud cron jobs (https://open.greenhost.net/stackspin/stackspin/-/issues/984) -- GitLab