tests: Changed container image source for busybox

Due to docker rate limiting we can not rely in docker.io for
retrieving the images.

This was detected when executing our tests for podman fedora
gating pipeline. Our busybox image was not downloaded and
one of the list tests was failing.
This commit is contained in:
Oliver Gutierrez 2021-08-05 13:24:20 +01:00 committed by Ondřej Míchal
parent 04c673dd06
commit 09fb237727
3 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,2 @@
FROM busybox

View file

@ -0,0 +1,4 @@
This image is just a clone of the base busybox image used for testing purposes.
The Containerfile is used to build the quay.io/toolbox_tests/busybox image that
is used in the toolbox test suite.

View file

@ -11,7 +11,7 @@ readonly SKOPEO=$(command -v skopeo)
readonly IMAGE_CACHE_DIR="${BATS_RUN_TMPDIR}/image-cache"
# Images
declare -Ag IMAGES=([busybox]="docker.io/library/busybox" \
declare -Ag IMAGES=([busybox]="quay.io/toolbox_tests/busybox" \
[fedora]="registry.fedoraproject.org/fedora-toolbox" \
[rhel]="registry.access.redhat.com/ubi8")