From ab164a270263ea9d3323fe37b32cef3b9d67f478 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 2 Mar 2026 16:24:48 -0500 Subject: [PATCH] reef: qa: use only ubuntu 20.04 for pacific-x Filter out centos9 and ubuntu22.04 for pacific tests. We do not have packages for those distributions. Signed-off-by: Patrick Donnelly Fixes: https://tracker.ceph.com/issues/75034 --- qa/suites/upgrade/pacific-x/parallel/1-tasks.yaml | 8 ++++++++ qa/suites/upgrade/pacific-x/stress-split/1-start.yaml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/qa/suites/upgrade/pacific-x/parallel/1-tasks.yaml b/qa/suites/upgrade/pacific-x/parallel/1-tasks.yaml index 682d96b88a4..478f1d1265a 100644 --- a/qa/suites/upgrade/pacific-x/parallel/1-tasks.yaml +++ b/qa/suites/upgrade/pacific-x/parallel/1-tasks.yaml @@ -1,3 +1,11 @@ +teuthology: + postmerge: + - | + -- centos 9 is not available for Pacific ; centos 8 is not available for reef on new lab + if (yaml.os_type == "centos") or (yaml.os_type == "ubuntu" and yaml.os_version == "22.04") then + reject() + end + overrides: ceph: log-ignorelist: diff --git a/qa/suites/upgrade/pacific-x/stress-split/1-start.yaml b/qa/suites/upgrade/pacific-x/stress-split/1-start.yaml index a8f5a5f24ee..b021e575e44 100644 --- a/qa/suites/upgrade/pacific-x/stress-split/1-start.yaml +++ b/qa/suites/upgrade/pacific-x/stress-split/1-start.yaml @@ -1,3 +1,11 @@ +teuthology: + postmerge: + - | + -- centos 9 is not available for Pacific ; centos 8 is not available for reef on new lab + if (yaml.os_type == "centos") or (yaml.os_type == "ubuntu" and yaml.os_version == "22.04") then + reject() + end + tasks: - install: branch: pacific -- 2.47.3