diff options
author | baude <bbaude@redhat.com> | 2018-11-19 13:20:56 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-11-20 09:49:34 -0600 |
commit | 690c52a113124efcedccb84e44198e7602f064ec (patch) | |
tree | 9a11d0ad045ae8f72354a80ede4068f0a9cbbeab /pkg | |
parent | 4eecc8cf70728d733aa8d1c948093d9ae4a334df (diff) | |
download | podman-690c52a113124efcedccb84e44198e7602f064ec.tar.gz podman-690c52a113124efcedccb84e44198e7602f064ec.tar.bz2 podman-690c52a113124efcedccb84e44198e7602f064ec.zip |
Allow users to expose ports from the pod to the host
we need to allow users to expose ports to the host for the purposes
of networking, like a webserver. the port exposure must be done at
the time the pod is created.
strictly speaking, the port exposure occurs on the infra container.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/spec/createconfig.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/spec/createconfig.go b/pkg/spec/createconfig.go index 6ac9d82da..6a0642ee7 100644 --- a/pkg/spec/createconfig.go +++ b/pkg/spec/createconfig.go @@ -335,7 +335,6 @@ func (c *CreateConfig) GetContainerCreateOptions(runtime *libpod.Runtime) ([]lib } options = append(options, runtime.WithPod(pod)) } - if len(c.PortBindings) > 0 { portBindings, err = c.CreatePortBindings() if err != nil { |