diff options
author | baude <bbaude@redhat.com> | 2018-01-22 09:17:51 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-01-22 17:09:11 +0000 |
commit | e1c67e6c8579931f44ec61f847f536a8f68202db (patch) | |
tree | 8afb243ad165bb0775b439ed555111e615c64ebc /cmd/podman/ps.go | |
parent | 5c3e4cfa62452b9cd5c2c08bf081ab524ded1cb4 (diff) | |
download | podman-e1c67e6c8579931f44ec61f847f536a8f68202db.tar.gz podman-e1c67e6c8579931f44ec61f847f536a8f68202db.tar.bz2 podman-e1c67e6c8579931f44ec61f847f536a8f68202db.zip |
Expose ports from image
When an image has a port to expose, we need to expose it. User's input overrides the
image's port information.
Also, enable port information in ps so we can see which random port is assigned.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #249
Approved by: rhatdan
Diffstat (limited to 'cmd/podman/ps.go')
-rw-r--r-- | cmd/podman/ps.go | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/cmd/podman/ps.go b/cmd/podman/ps.go index 944664c68..d68abeb53 100644 --- a/cmd/podman/ps.go +++ b/cmd/podman/ps.go @@ -10,6 +10,7 @@ import ( "strings" "time" + "github.com/cri-o/ocicni/pkg/ocicni" "github.com/docker/go-units" specs "github.com/opencontainers/runtime-spec/specs-go" "github.com/pkg/errors" @@ -400,7 +401,7 @@ func getTemplateOutput(containers []*libpod.Container, opts psOptions) ([]psTemp //command := getStrFromSquareBrackets(ctr.ImageCreatedBy) command := strings.Join(ctr.Spec().Process.Args, " ") //mounts := getMounts(ctr.Mounts, opts.noTrunc) - //ports := getPorts(ctr.Config.ExposedPorts) + ports := getPorts(ctr.Config().PortMappings) //size := units.HumanSize(float64(ctr.SizeRootFs)) labels := formatLabels(ctr.Labels()) ns := getNamespaces(pid) @@ -433,7 +434,7 @@ func getTemplateOutput(containers []*libpod.Container, opts psOptions) ([]psTemp CreatedAt: createdAt, RunningFor: runningFor, Status: status, - //Ports: ports, + Ports: ports, //Size: size, Names: ctr.Name(), Labels: labels, @@ -592,15 +593,19 @@ func getMounts(mounts []specs.Mount, noTrunc bool) string { } return strings.Join(arr, ",") } +*/ // getPorts converts the ports used to a string of the from "port1, port2" -func getPorts(ports map[string]struct{}) string { - var arr []string +func getPorts(ports []ocicni.PortMapping) string { + var portDisplay []string if len(ports) == 0 { return "" } - for key := range ports { - arr = append(arr, key) + for _, v := range ports { + hostIP := v.HostIP + if hostIP == "" { + hostIP = "0.0.0.0" + } + portDisplay = append(portDisplay, fmt.Sprintf("%s:%d->%d/%s", hostIP, v.HostPort, v.ContainerPort, v.Protocol)) } - return strings.Join(arr, ",") + return strings.Join(portDisplay, ", ") } -*/ |