diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-02-10 09:42:17 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-02-10 09:42:17 +0100 |
commit | b8c5d5612b90ebce453a1bbc4757fced4dc731dc (patch) | |
tree | c2d7ee2209584189fc0c14685d402d588734a0b1 | |
parent | 54558fbe4b27a8e8bc81c3c6079ea7e89ac683ee (diff) | |
download | podman-b8c5d5612b90ebce453a1bbc4757fced4dc731dc.tar.gz podman-b8c5d5612b90ebce453a1bbc4757fced4dc731dc.tar.bz2 podman-b8c5d5612b90ebce453a1bbc4757fced4dc731dc.zip |
e2e pull test: use k8s pause instead of alpine
When pulling with --all-tags, use the k8s pause image instead of alpine.
The pause repo has considerably less tags and is hence used in master to
prevent timeouts that we're hitting when running rootless, where we're
suffering additional performance regressions on VFS.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
-rw-r--r-- | test/e2e/pull_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index 5152409af..8a5979485 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -339,7 +339,7 @@ var _ = Describe("Podman pull", func() { }) It("podman pull check all tags", func() { - session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "alpine"}) + session := podmanTest.PodmanNoCache([]string{"pull", "--all-tags", "k8s.gcr.io/pause"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) Expect(session.LineInOuputStartsWith("Pulled Images:")).To(BeTrue()) |