From a745d99a889c5e3a91176f6ee5654aa08544e5e2 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 27 Jan 2023 10:00:56 +0100 Subject: [PATCH] fix CI: test fail due to merge containers/podman/pull/17186 and containers/podman/pull/17201 have been merged at roughly the same time. Both work fine in isolation but the new kube test breaks in combination. Fix the IPC kube test to make CI healthy. Signed-off-by: Valentin Rothberg --- test/e2e/play_kube_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go index 106b5df647..e32522ea87 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -4989,7 +4989,7 @@ spec: inspect := podmanTest.Podman([]string{"inspect", "test-hostipc-alpine", "--format", "{{ .HostConfig.IpcMode }}"}) inspect.WaitWithDefaultTimeout() Expect(inspect).Should(Exit(0)) - Expect(inspect.OutputToString()).To(Equal("shareable")) + Expect(inspect.OutputToString()).To(Equal("host")) cmd := exec.Command("ls", "-l", "/proc/self/ns/ipc") res, err := cmd.Output()