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

Merge branch '1105-ignore-kubeproxy-alert' into renovate/kube-prometheus-stack-30.x

parents 870ef18e c5b461a8
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ spec:
spec:
# renovate: registryUrl=https://charts.bitnami.com/bitnami
chart: postgresql
version: 10.12.4
version: 10.15.1
sourceRef:
kind: HelmRepository
name: bitnami
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment