summaryrefslogtreecommitdiff
path: root/test/e2e/pod_create_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-11 15:52:42 +0100
committerGitHub <noreply@github.com>2021-11-11 15:52:42 +0100
commitfd010adfdcb6f578623b77281f2ae012bcd1ac85 (patch)
treedfb7681ce86eed1dbef58f3d024650550d15c4a0 /test/e2e/pod_create_test.go
parent8de9950038b5a0582bfecfbe3a11427e6cfbfcfe (diff)
parent9c94530bbe575544d3dceeb591bc3c836a367e22 (diff)
downloadpodman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.tar.gz
podman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.tar.bz2
podman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.zip
Merge pull request #12269 from Luap99/backport3.4
[v3.4] backport networking fixes
Diffstat (limited to 'test/e2e/pod_create_test.go')
-rw-r--r--test/e2e/pod_create_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/e2e/pod_create_test.go b/test/e2e/pod_create_test.go
index 2ccca28d3..bfdf9fe3b 100644
--- a/test/e2e/pod_create_test.go
+++ b/test/e2e/pod_create_test.go
@@ -806,4 +806,22 @@ ENTRYPOINT ["sleep","99999"]
Expect(ok).To(BeTrue())
})
+ It("podman pod create read network mode from config", func() {
+ confPath, err := filepath.Abs("config/containers-netns.conf")
+ Expect(err).ToNot(HaveOccurred())
+ os.Setenv("CONTAINERS_CONF", confPath)
+ defer os.Unsetenv("CONTAINERS_CONF")
+ if IsRemote() {
+ podmanTest.RestartRemoteService()
+ }
+
+ pod := podmanTest.Podman([]string{"pod", "create", "--name", "test", "--infra-name", "test-infra"})
+ pod.WaitWithDefaultTimeout()
+ Expect(pod).Should(Exit(0))
+
+ inspect := podmanTest.Podman([]string{"inspect", "--format", "{{.HostConfig.NetworkMode}}", "test-infra"})
+ inspect.WaitWithDefaultTimeout()
+ Expect(inspect).Should(Exit(0))
+ Expect(inspect.OutputToString()).Should(Equal("host"))
+ })
})