[kubevirt-operator] Fix typo in VMNotRunningFor10Minutes alert

Fix case sensitivity in status check: "running" → "Running".
The metric uses "Running" (capital R), so the lowercase check was
always triggering alerts even for running VMs.

Fixes: https://github.com/cozystack/cozystack/issues/1552

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Aleksei Sviridkin <f@lex.la>
(cherry picked from commit 7fab919e07)
This commit is contained in:
Aleksei Sviridkin 2025-12-29 16:06:08 +03:00 committed by github-actions[bot]
parent 56ed29c7fc
commit 13bfb72ea5

View file

@ -10,7 +10,7 @@ spec:
expr: |
max_over_time(
kubevirt_vm_info{
status!="running",
status!="Running",
exported_namespace=~".+",
name=~".+"
}[10m]