mirror of
https://github.com/containers/podman.git
synced 2025-06-29 06:57:13 +08:00
podman-remote make --size optional in ps
Close #3578 Add `size` field to PsOpts in podman remote to receive size as an option. Signed-off-by: Qi Wang <qiwan@redhat.com>
This commit is contained in:
2
API.md
2
API.md
@ -1894,6 +1894,8 @@ pod [?bool](#?bool)
|
||||
|
||||
quiet [?bool](#?bool)
|
||||
|
||||
size [?bool](#?bool)
|
||||
|
||||
sort [?string](#?string)
|
||||
|
||||
sync [?bool](#?bool)
|
||||
|
@ -144,10 +144,11 @@ type PsOpts (
|
||||
last: ?int,
|
||||
latest: ?bool,
|
||||
noTrunc: ?bool,
|
||||
pod: ?bool,
|
||||
quiet: ?bool,
|
||||
sort: ?string,
|
||||
sync: ?bool
|
||||
pod: ?bool,
|
||||
quiet: ?bool,
|
||||
size: ?bool,
|
||||
sort: ?string,
|
||||
sync: ?bool
|
||||
)
|
||||
|
||||
type PsContainer (
|
||||
|
@ -493,6 +493,7 @@ func (r *LocalRuntime) Ps(c *cliconfig.PsValues, opts shared.PsOptions) ([]share
|
||||
NoTrunc: &c.NoTrunct,
|
||||
Pod: &c.Pod,
|
||||
Quiet: &c.Quiet,
|
||||
Size: &c.Size,
|
||||
Sort: &c.Sort,
|
||||
Sync: &c.Sync,
|
||||
}
|
||||
|
@ -66,32 +66,34 @@ func (i *LibpodAPI) Ps(call iopodman.VarlinkCall, opts iopodman.PsOpts) error {
|
||||
|
||||
for _, ctr := range psContainerOutputs {
|
||||
container := iopodman.PsContainer{
|
||||
Id: ctr.ID,
|
||||
Image: ctr.Image,
|
||||
Command: ctr.Command,
|
||||
Created: ctr.Created,
|
||||
Ports: ctr.Ports,
|
||||
Names: ctr.Names,
|
||||
IsInfra: ctr.IsInfra,
|
||||
Status: ctr.Status,
|
||||
State: ctr.State.String(),
|
||||
PidNum: int64(ctr.Pid),
|
||||
RootFsSize: ctr.Size.RootFsSize,
|
||||
RwSize: ctr.Size.RwSize,
|
||||
Pod: ctr.Pod,
|
||||
CreatedAt: ctr.CreatedAt.Format(time.RFC3339Nano),
|
||||
ExitedAt: ctr.ExitedAt.Format(time.RFC3339Nano),
|
||||
StartedAt: ctr.StartedAt.Format(time.RFC3339Nano),
|
||||
Labels: ctr.Labels,
|
||||
NsPid: ctr.PID,
|
||||
Cgroup: ctr.Cgroup,
|
||||
Ipc: ctr.Cgroup,
|
||||
Mnt: ctr.MNT,
|
||||
Net: ctr.NET,
|
||||
PidNs: ctr.PIDNS,
|
||||
User: ctr.User,
|
||||
Uts: ctr.UTS,
|
||||
Mounts: ctr.Mounts,
|
||||
Id: ctr.ID,
|
||||
Image: ctr.Image,
|
||||
Command: ctr.Command,
|
||||
Created: ctr.Created,
|
||||
Ports: ctr.Ports,
|
||||
Names: ctr.Names,
|
||||
IsInfra: ctr.IsInfra,
|
||||
Status: ctr.Status,
|
||||
State: ctr.State.String(),
|
||||
PidNum: int64(ctr.Pid),
|
||||
Pod: ctr.Pod,
|
||||
CreatedAt: ctr.CreatedAt.Format(time.RFC3339Nano),
|
||||
ExitedAt: ctr.ExitedAt.Format(time.RFC3339Nano),
|
||||
StartedAt: ctr.StartedAt.Format(time.RFC3339Nano),
|
||||
Labels: ctr.Labels,
|
||||
NsPid: ctr.PID,
|
||||
Cgroup: ctr.Cgroup,
|
||||
Ipc: ctr.Cgroup,
|
||||
Mnt: ctr.MNT,
|
||||
Net: ctr.NET,
|
||||
PidNs: ctr.PIDNS,
|
||||
User: ctr.User,
|
||||
Uts: ctr.UTS,
|
||||
Mounts: ctr.Mounts,
|
||||
}
|
||||
if ctr.Size != nil {
|
||||
container.RootFsSize = ctr.Size.RootFsSize
|
||||
container.RwSize = ctr.Size.RwSize
|
||||
}
|
||||
containers = append(containers, container)
|
||||
}
|
||||
|
@ -191,7 +191,7 @@ func makePsOpts(inOpts iopodman.PsOpts) shared.PsOptions {
|
||||
Latest: derefBool(inOpts.Latest),
|
||||
NoTrunc: derefBool(inOpts.NoTrunc),
|
||||
Pod: derefBool(inOpts.Pod),
|
||||
Size: true,
|
||||
Size: derefBool(inOpts.Size),
|
||||
Sort: derefString(inOpts.Sort),
|
||||
Namespace: true,
|
||||
Sync: derefBool(inOpts.Sync),
|
||||
|
Reference in New Issue
Block a user