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:
parent
04c673dd06
commit
09fb237727
3 changed files with 7 additions and 1 deletions
2
images/test/busybox/Containerfile
Normal file
2
images/test/busybox/Containerfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
FROM busybox
|
||||
|
4
images/test/busybox/README.md
Normal file
4
images/test/busybox/README.md
Normal 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.
|
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue