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>
This commit is contained in:
Valentin Rothberg
2022-05-05 10:04:52 +02:00
parent 22c51da0cc
commit 6eaa9ca264

@ -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"})