diff options
author | Harshal Patil <harshal.patil@in.ibm.com> | 2019-01-07 14:54:29 +0530 |
---|---|---|
committer | Harshal Patil <harshal.patil@in.ibm.com> | 2019-01-11 09:28:08 +0530 |
commit | 13bcf72ae4d30ee654fa37976c436f627e7f31fa (patch) | |
tree | dbbf258fa442fee359d0e3df0a4721b51219757f /test/test_podman_pods.sh | |
parent | 1e4db4b0b8504e93e826d02b6c03cf78f41dcf7a (diff) | |
download | podman-13bcf72ae4d30ee654fa37976c436f627e7f31fa.tar.gz podman-13bcf72ae4d30ee654fa37976c436f627e7f31fa.tar.bz2 podman-13bcf72ae4d30ee654fa37976c436f627e7f31fa.zip |
Use multi-arch images in test case scripts
Signed-off-by: Harshal Patil <harshal.patil@in.ibm.com>
Diffstat (limited to 'test/test_podman_pods.sh')
-rwxr-xr-x | test/test_podman_pods.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_podman_pods.sh b/test/test_podman_pods.sh index 587f148cc..daa8acaee 100755 --- a/test/test_podman_pods.sh +++ b/test/test_podman_pods.sh @@ -60,8 +60,8 @@ podman ps --no-trunc | grep $ctrid ######## # Containers in a pod share network namespace ######## -podman run -dt --pod foobar quay.io/baude/alpine_nginx:latest -podman run -it --rm --pod foobar fedora-minimal:28 curl http://localhost +podman run -dt --pod foobar docker.io/library/nginx:latest +podman run -it --rm --pod foobar registry.fedoraproject.org/fedora-minimal:29 curl http://localhost ######## # There should be 3 containers running now @@ -91,7 +91,7 @@ podman pod stop foobar # Start a pod and its containers ######## podman pod start foobar -podman run -it --rm --pod foobar fedora-minimal:28 curl http://localhost +podman run -it --rm --pod foobar registry.fedoraproject.org/fedora-minimal:29 curl http://localhost ######## # Pause a pod and its containers @@ -103,7 +103,7 @@ podman pod pause foobar # Unpause a pod and its containers ######## podman pod unpause foobar -podman run -it --rm --pod foobar fedora-minimal:28 curl http://localhost +podman run -it --rm --pod foobar registry.fedoraproject.org/fedora-minimal:29 curl http://localhost ######## # Kill a pod and its containers |