Reduce PodNotReady alert lookback from 5m to 60s

The 5-minute lookback window kept stale data from terminated pods
visible during rollouts, causing the alert to sit in Pending for
~5 minutes after every routine deployment. 60s still covers two
scrape cycles (30s interval) while clearing stale data much faster.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-26 19:48:37 -07:00
commit 2c1652604b
2 changed files with 2 additions and 1 deletions

View file

@ -277,7 +277,7 @@ groups:
- refId: A - refId: A
datasourceUid: prometheus datasourceUid: prometheus
relativeTimeRange: relativeTimeRange:
from: 300 from: 60
to: 0 to: 0
model: model:
expr: >- expr: >-

View file

@ -0,0 +1 @@
Reduce PodNotReady alert lookback window from 5m to 60s to clear faster after rollouts.