diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-05 10:04:52 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-05-05 11:03:14 +0200 |
commit | 6eaa9ca2645b00672bea966175c29ca4c2ee5a02 (patch) | |
tree | 845119c6ab69c132bc9ef932787daf6ce07418ee /test | |
parent | 22c51da0ccd5accbf50161dc8762f6adce4dc3f6 (diff) | |
download | podman-6eaa9ca2645b00672bea966175c29ca4c2ee5a02.tar.gz podman-6eaa9ca2645b00672bea966175c29ca4c2ee5a02.tar.bz2 podman-6eaa9ca2645b00672bea966175c29ca4c2ee5a02.zip |
e2e: manifest_test: use cached registry
Used the cached registry archive instead of pulling down the image from
Quay.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/manifest_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
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"}) |