From: Afreen Misbah Date: Mon, 18 May 2026 19:37:59 +0000 (+0530) Subject: mgr/dashboard: Fix image sync issue grafana X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2588%2Fhead;p=ceph-build.git mgr/dashboard: Fix image sync issue grafana In the build script, `-e GODEBUG=http2client=0` is placed after the container image name (quay.io/skopeo/stable sync --all), which means it gets passed as a flag to skopeo sync, not to podman run. Signed-off-by: Afreen Misbah --- diff --git a/sync-images/build/build b/sync-images/build/build index e8adf5a90..131b78135 100644 --- a/sync-images/build/build +++ b/sync-images/build/build @@ -16,8 +16,8 @@ EOF # make sure we pull the last stable image podman pull quay.io/skopeo/stable podman run --rm --security-opt label=disable \ - -v ./sync.yml:/sync.yml:ro quay.io/skopeo/stable sync --all \ -e GODEBUG=http2client=0 \ + -v ./sync.yml:/sync.yml:ro quay.io/skopeo/stable sync --all \ --retry-times 5 \ --src yaml \ --src-username "${DOCKER_HUB_USERNAME}" \