diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-04 20:56:49 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-22 10:41:39 -0500 |
commit | e577ddf3bdf8bb594d1b3287053d6aa61aeae784 (patch) | |
tree | 3e0141ac965bb9b97fd3be2c764ff93054b27ec9 /test/e2e | |
parent | cfdb8fb29b34010206ea26f38e130d3e24403abf (diff) | |
download | podman-e577ddf3bdf8bb594d1b3287053d6aa61aeae784.tar.gz podman-e577ddf3bdf8bb594d1b3287053d6aa61aeae784.tar.bz2 podman-e577ddf3bdf8bb594d1b3287053d6aa61aeae784.zip |
Prefer read/write images over read/only images
With additional stores there is a risk that you could have
multiple images with the same name. IE An older image in a
read/only store versus a newer version in the read/write store.
This patch will ignore multiple images with the same name iff
one is read/write and all of the others are read/only.
Fixes: https://github.com/containers/podman/issues/8176
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/exists_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/exists_test.go b/test/e2e/exists_test.go index 7ff5d4207..480bfe5fc 100644 --- a/test/e2e/exists_test.go +++ b/test/e2e/exists_test.go @@ -38,7 +38,6 @@ var _ = Describe("Podman image|container exists", func() { Expect(session).Should(Exit(0)) }) It("podman image exists in local storage by short name", func() { - Skip("FIXME-8165: shortnames don't seem to work with quay (#8176)") session := podmanTest.Podman([]string{"image", "exists", "alpine"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) |