From cfa759f5ef3398f72c13745446f06ec020ce3bec Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Tue, 19 Dec 2023 09:59:19 +0200 Subject: [PATCH] image-rs: fix image pull test for docker.io image::tests::test_pull_image started failing with: failed to pull manifest Image manifest not found: no entry found in image index manifest matching client's default platform looks like a change on docker.io for getting docker.io/i386/busybox. Fix by moving to the standard pull url docker.io/busybox which seems sufficient for the test case. Signed-off-by: Mikko Ylinen --- image-rs/src/image.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image-rs/src/image.rs b/image-rs/src/image.rs index 1a747ae42..809ac8184 100644 --- a/image-rs/src/image.rs +++ b/image-rs/src/image.rs @@ -526,7 +526,7 @@ mod tests { // Azure Container Registry "mcr.microsoft.com/hello-world", // Docker container Registry - "docker.io/i386/busybox", + "docker.io/busybox", // Google Container Registry "gcr.io/google-containers/busybox:1.27.2", // JFrog Container Registry