summaryrefslogtreecommitdiff
path: root/test/e2e/run_test.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2021-11-18 14:12:10 +0100
committerValentin Rothberg <rothberg@redhat.com>2021-11-18 15:19:14 +0100
commit6f6a6925b22d822ec9a04f8832d949f2e52b01e0 (patch)
treea50927a9e1aec5a88477dba99095b94a42f4d964 /test/e2e/run_test.go
parent69e1204e5e5f73319930fa957a850cb8d3dc6910 (diff)
downloadpodman-6f6a6925b22d822ec9a04f8832d949f2e52b01e0.tar.gz
podman-6f6a6925b22d822ec9a04f8832d949f2e52b01e0.tar.bz2
podman-6f6a6925b22d822ec9a04f8832d949f2e52b01e0.zip
fix CI
Our fedora-minimal image on Quay bases on fedora-minimal:latest which starting with F35 removed a number of binaries that our CI depends on. Fix that by pulling `fedora-minimal:34` from the Fedora registry directly. Once the build bot on Quay has been disabled, we move the image over there to make sure that it will not change over time. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r--test/e2e/run_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go
index d6d729d3a..05cb986c6 100644
--- a/test/e2e/run_test.go
+++ b/test/e2e/run_test.go
@@ -1516,7 +1516,7 @@ USER mail`, BB)
})
It("podman run --privileged and --group-add", func() {
- groupName := "kvm"
+ groupName := "mail"
session := podmanTest.Podman([]string{"run", "-t", "-i", "--group-add", groupName, "--privileged", fedoraMinimal, "groups"})
session.WaitWithDefaultTimeout()
Expect(session).Should(Exit(0))