summaryrefslogtreecommitdiff
path: root/test/test_podman_pods.sh
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-01-13 06:14:22 -0800
committerGitHub <noreply@github.com>2019-01-13 06:14:22 -0800
commitf31fdb221910130db4997df876b5b820a4590646 (patch)
treee19614d50d67e444c0114691859689ca714080d5 /test/test_podman_pods.sh
parent9493be69b3fd1d4ed8631655704d376a66ebf86b (diff)
parent13bcf72ae4d30ee654fa37976c436f627e7f31fa (diff)
downloadpodman-f31fdb221910130db4997df876b5b820a4590646.tar.gz
podman-f31fdb221910130db4997df876b5b820a4590646.tar.bz2
podman-f31fdb221910130db4997df876b5b820a4590646.zip
Merge pull request #2008 from harche/multi-arch
Use multi-arch images in test cases
Diffstat (limited to 'test/test_podman_pods.sh')
-rwxr-xr-xtest/test_podman_pods.sh8
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