From 6eaa9ca2645b00672bea966175c29ca4c2ee5a02 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 5 May 2022 10:04:52 +0200 Subject: e2e: manifest_test: use cached registry Used the cached registry archive instead of pulling down the image from Quay. Signed-off-by: Valentin Rothberg --- test/e2e/manifest_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/e2e') diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index 92b8bc2e1..88ccdc87d 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -273,7 +273,10 @@ var _ = Describe("Podman manifest", func() { }) It("authenticated push", func() { - registry, err := podmanRegistry.Start() + registryOptions := &podmanRegistry.Options{ + Image: "docker-archive:" + imageTarPath(registry), + } + registry, err := podmanRegistry.StartWithOptions(registryOptions) Expect(err).To(BeNil()) session := podmanTest.Podman([]string{"manifest", "create", "foo"}) -- cgit v1.2.3-54-g00ecf