CI: use quay.io/podman/hello due too dockerhub rate limits

Change-Id: Id292915fc4c4fefd86a6da431b35daf5faf45523
This commit is contained in:
Bartosz Bezak 2024-11-25 11:42:00 +01:00
parent 3961c2ddbf
commit eacbe8a08d

View File

@ -158,13 +158,13 @@ def test_docker_storage_driver_is_overlay2(host):
@pytest.mark.parametrize('user', ['kolla', 'stack'])
def test_docker_image_download(host, user):
with host.sudo(user):
host.check_output("docker pull alpine")
host.check_output("docker pull quay.io/podman/hello")
@pytest.mark.parametrize('user', ['kolla', 'stack'])
def test_docker_container_run(host, user):
with host.sudo(user):
host.check_output("docker run --rm alpine /bin/true")
host.check_output("docker run --rm quay.io/podman/hello")
def test_timezone(host):