From: Dhairya Parmar Date: Tue, 28 Jan 2025 10:44:14 +0000 (+0530) Subject: script/ceph-debug-docker.sh: fix manifest unknown error X-Git-Tag: v20.0.0~142^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c291168a04af2d7d551f6f879e7f1d41ea39e56e;p=ceph.git 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 --- diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index c3edc5df76d4..3e92979c9909 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"