diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-11 15:52:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-11 15:52:42 +0100 |
commit | fd010adfdcb6f578623b77281f2ae012bcd1ac85 (patch) | |
tree | dfb7681ce86eed1dbef58f3d024650550d15c4a0 /test/e2e/pod_create_test.go | |
parent | 8de9950038b5a0582bfecfbe3a11427e6cfbfcfe (diff) | |
parent | 9c94530bbe575544d3dceeb591bc3c836a367e22 (diff) | |
download | podman-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.go | 18 |
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")) + }) }) |