Merge pull request #2296 from baude/psShowMount

Add volume mounts to PS output
This commit is contained in:
OpenShift Merge Robot
2019-02-09 13:49:29 +01:00
committed by GitHub

View File

@ -88,6 +88,7 @@ type PsContainerOutput struct {
PIDNS string
User string
UTS string
Mounts string
}
// Namespace describes output for ps namespace
@ -228,6 +229,7 @@ func NewBatchContainer(ctr *libpod.Container, opts PsOptions) (PsContainerOutput
pso.CreatedAt = ctr.CreatedTime()
pso.StartedAt = startedAt
pso.Labels = ctr.Labels()
pso.Mounts = strings.Join(ctr.UserVolumes(), " ")
if opts.Namespace {
pso.Cgroup = ns.Cgroup