diff options
author | Paul Holzinger <pholzing@redhat.com> | 2021-08-23 11:00:55 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-08-30 13:19:47 -0400 |
commit | 17afae4ebdc44fdea8f4dfccdd347e5a65804427 (patch) | |
tree | 93455e160eebe6701eb7e94527b6c4031b310025 /test | |
parent | c16daa07ed2ccb251d2eaf76614c8fde433dcc91 (diff) | |
download | podman-17afae4ebdc44fdea8f4dfccdd347e5a65804427.tar.gz podman-17afae4ebdc44fdea8f4dfccdd347e5a65804427.tar.bz2 podman-17afae4ebdc44fdea8f4dfccdd347e5a65804427.zip |
Use pod netns with --pod-id-file
When `--pod-id-file` is used do not parse the default network namespace
and let specgen handle it instead.
This regression was introduced in commit 7ef3981abe24.
Fixes #11303
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/pod_create_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/e2e/pod_create_test.go b/test/e2e/pod_create_test.go index 028689211..13c8d7ad4 100644 --- a/test/e2e/pod_create_test.go +++ b/test/e2e/pod_create_test.go @@ -117,6 +117,21 @@ var _ = Describe("Podman pod create", func() { Expect(check).Should(Exit(0)) }) + It("podman create pod with id file with network portbindings", func() { + file := filepath.Join(podmanTest.TempDir, "pod.id") + name := "test" + session := podmanTest.Podman([]string{"pod", "create", "--name", name, "--pod-id-file", file, "-p", "8080:80"}) + session.WaitWithDefaultTimeout() + Expect(session).Should(Exit(0)) + + webserver := podmanTest.Podman([]string{"run", "--pod-id-file", file, "-dt", nginx}) + webserver.WaitWithDefaultTimeout() + Expect(webserver).Should(Exit(0)) + + check := SystemExec("nc", []string{"-z", "localhost", "8080"}) + Expect(check).Should(Exit(0)) + }) + It("podman create pod with no infra but portbindings should fail", func() { name := "test" session := podmanTest.Podman([]string{"pod", "create", "--infra=false", "--name", name, "-p", "80:80"}) |