From c291168a04af2d7d551f6f879e7f1d41ea39e56e Mon Sep 17 00:00:00 2001 From: Dhairya Parmar Date: Tue, 28 Jan 2025 16:14:14 +0530 Subject: [PATCH] script/ceph-debug-docker.sh: fix manifest unknown error looks like centos9 image is not present on https://hub.docker.com/_/centos hence it fails to build image and instantiate debug container: Step 1/4 : FROM centos:stream9 manifest for centos:stream9 not found: manifest unknown: manifest unknown hence switching to quay.io/centos/centos:stream9 Signed-off-by: Dhairya Parmar --- src/script/ceph-debug-docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index c3edc5df76d..3e92979c990 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -96,7 +96,7 @@ function main { pushd "$T" case "$env" in centos:stream|centos:stream9) - env=centos:stream9 + env=quay.io/centos/centos:stream9 distro="centos/9" ;; centos:stream8) @@ -154,7 +154,7 @@ EOF ceph_debuginfo="ceph-base-debuginfo" debuginfo=/etc/yum.repos.d/CentOS-Stream-Debuginfo.repo ;; - centos:stream9) + quay.io/centos/centos:stream9) python_bindings="python3-rados python3-cephfs" base_debuginfo="glibc-debuginfo" ceph_debuginfo="ceph-base-debuginfo" -- 2.39.5