From 6db75b76b8b256bff90ed0e20519816b1f908724 Mon Sep 17 00:00:00 2001 From: Travis Nielsen Date: Wed, 11 Dec 2024 15:02:25 -0700 Subject: [PATCH] ci: use correct ceph-ci repo The repo should be quay.ceph.io, instead of quay.io Signed-off-by: Travis Nielsen --- .github/workflows/daily-nightly-jobs.yml | 2 +- tests/framework/installer/ceph_installer.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/daily-nightly-jobs.yml b/.github/workflows/daily-nightly-jobs.yml index 97656176b039..41fb53c081e1 100644 --- a/.github/workflows/daily-nightly-jobs.yml +++ b/.github/workflows/daily-nightly-jobs.yml @@ -356,5 +356,5 @@ jobs: if: github.repository == 'rook/rook' uses: ./.github/workflows/canary-integration-test.yml with: - ceph_images: '["quay.io/ceph/ceph:v18", "quay.io/ceph/ceph:v19", "quay.io/ceph-ci/ceph:main", "quay.io/ceph-ci/ceph:reef", "quay.io/ceph-ci/ceph:squid"]' + ceph_images: '["quay.io/ceph/ceph:v18", "quay.io/ceph/ceph:v19", "quay.ceph.io/ceph-ci/ceph:main", "quay.ceph.io/ceph-ci/ceph:reef", "quay.ceph.io/ceph-ci/ceph:squid"]' secrets: inherit diff --git a/tests/framework/installer/ceph_installer.go b/tests/framework/installer/ceph_installer.go index 2ef5e737e9e1..e7fed2c1575a 100644 --- a/tests/framework/installer/ceph_installer.go +++ b/tests/framework/installer/ceph_installer.go @@ -46,10 +46,10 @@ const ( reefTestImage = "quay.io/ceph/ceph:v18" squidTestImage = "quay.io/ceph/ceph:v19" // test with the current development versions - reefDevelTestImage = "quay.io/ceph-ci/ceph:reef" - squidDevelTestImage = "quay.io/ceph-ci/ceph:squid" + reefDevelTestImage = "quay.ceph.io/ceph-ci/ceph:reef" + squidDevelTestImage = "quay.ceph.io/ceph-ci/ceph:squid" // test with the latest Ceph main image - mainTestImage = "quay.io/ceph-ci/ceph:main" + mainTestImage = "quay.ceph.io/ceph-ci/ceph:main" cephOperatorLabel = "app=rook-ceph-operator" defaultclusterName = "test-cluster"