mirror of
https://github.com/containers/podman.git
synced 2025-10-17 19:24:04 +08:00
e2e: use safe fedora-minimal image
PR #20082 bumped fedora-minimal, from f34 to f39. This worked fine for a few days, then all of a sudden CI started breaking because the f39 minimal image got rebuilt and repushed without adduser. #20127 was an emergency fix; this is a stabler fix. We keep using not-under-our-control container images, and we keep getting burned when those get updated in nasty ways. Here we switch to using a tagged & versioned fedora-minimal image that is under our control. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
@ -112,7 +112,7 @@ var _ = Describe("Podman init containers", func() {
|
||||
filename := filepath.Join("/dev/shm", RandomString(12))
|
||||
|
||||
// Write the date to a file
|
||||
session := podmanTest.Podman([]string{"create", "--init-ctr", "always", "--pod", "new:foobar", fedoraMinimal, "bin/sh", "-c", "date +%T.%N > " + filename})
|
||||
session := podmanTest.Podman([]string{"create", "--init-ctr", "always", "--pod", "new:foobar", fedoraMinimal, "/bin/sh", "-c", "date +%T.%N > " + filename})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(ExitCleanly())
|
||||
verify := podmanTest.Podman([]string{"create", "--pod", "foobar", "-t", ALPINE, "top"})
|
||||
|
Reference in New Issue
Block a user