From e99e724e4ff1413e43dc36d34d18ad6d8403547b Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Thu, 9 Mar 2023 17:21:44 +0530 Subject: [PATCH] mgr/dashboard: custom image for kcli bootstrap script the stable branches like quincy pulls from the quay.io/ceph/ceph:v17 to bootstrap the ceph cluster in test environments. This will cause issues because the branches are changing constantly but the image is not. So using the quay.ceph.io repo to bring the cluster in test environment. Signed-off-by: Nizamudeen A (cherry picked from commit be8f1e7f4a81dbf04692446edcc429d93d59e09d) --- src/pybind/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pybind/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh b/src/pybind/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh index 67a0fba2296..1c2c4b3cd6a 100755 --- a/src/pybind/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh +++ b/src/pybind/mgr/dashboard/ci/cephadm/bootstrap-cluster.sh @@ -5,6 +5,8 @@ set -x export PATH=/root/bin:$PATH mkdir /root/bin +export CEPHADM_IMAGE='quay.ceph.io/ceph-ci/ceph:reef' + CEPHADM="/root/bin/cephadm" /mnt/{{ ceph_dev_folder }}/src/cephadm/build.sh $CEPHADM -- 2.47.3