Skip to content

Commit

Permalink
image-rs: fix image pull test for docker.io
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mythi authored and piotrpalcz committed Dec 21, 2023
1 parent 4f58887 commit cfa759f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image-rs/src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cfa759f

Please sign in to comment.