From aa43a9c0ba41792f566e9c21e7aec829e80e56bb Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Wed, 20 Oct 2021 08:59:25 +0200
Subject: [PATCH] Ignore NodeClockNotSynchronising alert in CI

---
 test/pytest/test_prometheus.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/pytest/test_prometheus.py b/test/pytest/test_prometheus.py
index 4ae44b824..a4f6a5fda 100755
--- a/test/pytest/test_prometheus.py
+++ b/test/pytest/test_prometheus.py
@@ -21,7 +21,7 @@ def ignore_alert(alert):
         return True
 
     # Ignore issues fom high load during installation phase
-    if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp)",
+    if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising)",
         alert["labels"]["alertname"]):
         return True
     # Ignore nextcloud cron jobs (https://open.greenhost.net/openappstack/openappstack/-/issues/984)
-- 
GitLab