From b8c5d5612b90ebce453a1bbc4757fced4dc731dc Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Mon, 10 Feb 2020 09:42:17 +0100 Subject: 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 --- test/e2e/pull_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') 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()) -- cgit v1.2.3-54-g00ecf