diff --git a/test/pytest/test_prometheus.py b/test/pytest/test_prometheus.py
index 5fca63efa3520fc723745d12cca31e5fcb4db41c..869285efefd2be590f7eec5569d76319402b36e0 100755
--- a/test/pytest/test_prometheus.py
+++ b/test/pytest/test_prometheus.py
@@ -17,7 +17,7 @@ def ignore_alert(alert):
 
     # Ignore `KubeAPILatencyHigh` fom high load during installation
     # phase
-    if alert["labels"]["alertname"] == "KubeAPIDown":
+    if re.search(r"(KubeAPIDown|KubeletDown)", alert["labels"]["alertname"]):
         return True
 
     return False