From cda6b6d75aa24035688172677b9d7a9acf51671e Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Tue, 19 May 2026 01:07:59 +0530 Subject: [PATCH] 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 --- sync-images/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}" \ -- 2.47.3