From 608031adbad1dd4f629443afdd5037b4e06d8e74 Mon Sep 17 00:00:00 2001 From: Nestor Acuna Blanco <37973744+nestoracunablanco@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:55:00 +0200 Subject: [PATCH] feat: enable s390x prometheus check (#1920) As of version 2.15.2, there is no available container image for s390x. However, version 2.25.2 does provide support for this architecture. This update enables the checks to run on s390x. Signed-off-by: Nestor Acuna Blanco --- tools/prom-rule-ci/verify-rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/prom-rule-ci/verify-rules.go b/tools/prom-rule-ci/verify-rules.go index 52ff9cabd..896a5378f 100644 --- a/tools/prom-rule-ci/verify-rules.go +++ b/tools/prom-rule-ci/verify-rules.go @@ -8,7 +8,7 @@ import ( "github.com/kubevirt/cluster-network-addons-operator/pkg/monitoring/rules" ) -const promImage = "quay.io/prometheus/prometheus:v2.15.2" +const promImage = "quay.io/prometheus/prometheus:v2.25.2" func main() { if len(os.Args) != 4 {