Skip to content
Snippets Groups Projects
Verified Commit 3dc844aa authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

do not ignore KubeProxyDown alert because it should not fire with KubeProxy monitoring turned off

parent 5d286933
Branches
Tags
No related merge requests found
......@@ -21,8 +21,7 @@ def ignore_alert(alert):
return True
# Ignore issues fom high load during installation phase
# KubeProxyDown: https://open.greenhost.net/stackspin/stackspin/-/issues/1105
if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising|KubeProxyDown)",
if re.search(r"(KubeAPIDown|KubeletDown|NodeFilesystemSpaceFillingUp|NodeClockNotSynchronising)",
alert["labels"]["alertname"]):
return True
# Ignore nextcloud cron jobs (https://open.greenhost.net/stackspin/stackspin/-/issues/984)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment