From fccac0580d3096ee493b3910b51ad83b83f8a725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Fri, 17 Sep 2021 15:27:39 +0200 Subject: [PATCH] ci: force a particular ceph version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's force v16.2.5 since the CI is broken with 16.2.6. This gives us time to continue to merge work and work on fixing deployments with 16.2.6 in parallel. Signed-off-by: Sébastien Han (cherry picked from commit ae291afb2f1a2fceb53801504adabc92bc5380d2) --- cluster/examples/kubernetes/ceph/cluster-test.yaml | 2 +- tests/framework/installer/ceph_installer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/examples/kubernetes/ceph/cluster-test.yaml b/cluster/examples/kubernetes/ceph/cluster-test.yaml index 9f602c5b28db..9900c734bf99 100644 --- a/cluster/examples/kubernetes/ceph/cluster-test.yaml +++ b/cluster/examples/kubernetes/ceph/cluster-test.yaml @@ -28,7 +28,7 @@ metadata: spec: dataDirHostPath: /var/lib/rook cephVersion: - image: quay.io/ceph/ceph:v16 + image: quay.io/ceph/ceph:v16.2.5 allowUnsupported: true mon: count: 1 diff --git a/tests/framework/installer/ceph_installer.go b/tests/framework/installer/ceph_installer.go index 758af83d6623..af2fcf7d241d 100644 --- a/tests/framework/installer/ceph_installer.go +++ b/tests/framework/installer/ceph_installer.go @@ -50,7 +50,7 @@ const ( // test with the latest octopus build octopusTestImage = "quay.io/ceph/ceph:v15" // test with the latest pacific build - pacificTestImage = "quay.io/ceph/ceph:v16" + pacificTestImage = "quay.io/ceph/ceph:v16.2.5" // test with the latest master image masterTestImage = "ceph/daemon-base:latest-master-devel" cephOperatorLabel = "app=rook-ceph-operator"