CI: use images from quay.io to prevent being throttled by docker hub (#8209)

* CI: use netchecker images from quay to prevent throttling

* Molecule: use hello-world image from quay.io
This commit is contained in:
Cristian Calin
2021-11-19 23:23:40 +02:00
committed by GitHub
parent be9de6b9d9
commit c74e1c9db3
6 changed files with 9 additions and 6 deletions

View File

@@ -14,6 +14,6 @@ def test_docker_service(host):
def test_docker_run(host):
with host.sudo():
cmd = host.command("docker run hello-world")
cmd = host.command("docker run quay.io/kubespray/hello-world:latest")
assert cmd.rc == 0
assert "Hello from Docker!" in cmd.stdout
assert "Hello from Docker" in cmd.stdout