]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commitdiff
mgr/dashboard: Fix image sync issue grafana 2588/head
authorAfreen Misbah <afreen@ibm.com>
Mon, 18 May 2026 19:37:59 +0000 (01:07 +0530)
committerAfreen Misbah <afreen@ibm.com>
Mon, 18 May 2026 19:40:12 +0000 (01:10 +0530)
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 <afreen@ibm.com>
sync-images/build/build

index e8adf5a900129179a5ad21e52e8f5a94533855ac..131b78135445127e343cfd1d3d1577574a976609 100644 (file)
@@ -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}" \