Skip to content

Commit

Permalink
fix(charts): invalid alert rule for PluginConstantlyFailing (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoGoman authored Dec 10, 2024
1 parent 9aad039 commit df55728
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/greenhouse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apiVersion: v2
name: greenhouse
description: A Helm chart for deploying greenhouse
type: application
version: 0.4.3
version: 0.4.4
appVersion: "0.1.0"

dependencies:
Expand Down
4 changes: 2 additions & 2 deletions charts/manager/alerts/operator.alerts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ groups:
annotations:
summary: "Plugin reconciliation is constantly failing"
description: "Plugin {{ $labels.plugin }} in organization {{ $labels.organization }} keeps failing with reason: {{ $labels.reason }}"
expr: increase(greenhouse_plugin_reconcile_total{result="error"}[5m] > 0) by (plugin, organization)
expr: sum by (organization, plugin) (increase(greenhouse_plugin_reconcile_total{result="error"}[5m])) > 0
for: 15m
labels:
severity: warning
severity: warning

0 comments on commit df55728

Please sign in to comment.