diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-06 15:23:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 15:23:19 +0200 |
commit | ba64186750a23675f42744ca4203b524e7b1b378 (patch) | |
tree | 018be18b7e1f9dec076120ab2d9ca65a56eebb10 /pkg/domain/infra/abi | |
parent | 8dea3c3419629de432bfaaa03d785fdb63b902d5 (diff) | |
parent | 7cbc09971a4d7322a6b29d86ef1d1fcb71f68f04 (diff) | |
download | podman-ba64186750a23675f42744ca4203b524e7b1b378.tar.gz podman-ba64186750a23675f42744ca4203b524e7b1b378.tar.bz2 podman-ba64186750a23675f42744ca4203b524e7b1b378.zip |
Merge pull request #5689 from sujil02/v2-pod-inspect
podmanv2 pod inspect
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r-- | pkg/domain/infra/abi/pods.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/pods.go b/pkg/domain/infra/abi/pods.go index 494a048ec..073cd8d5c 100644 --- a/pkg/domain/infra/abi/pods.go +++ b/pkg/domain/infra/abi/pods.go @@ -331,3 +331,24 @@ func (ic *ContainerEngine) PodPs(ctx context.Context, options entities.PodPSOpti } return reports, nil } + +func (ic *ContainerEngine) PodInspect(ctx context.Context, options entities.PodInspectOptions) (*entities.PodInspectReport, error) { + var ( + pod *libpod.Pod + err error + ) + // Look up the pod. + if options.Latest { + pod, err = ic.Libpod.GetLatestPod() + } else { + pod, err = ic.Libpod.LookupPod(options.NameOrID) + } + if err != nil { + return nil, errors.Wrap(err, "unable to lookup requested container") + } + inspect, err := pod.Inspect() + if err != nil { + return nil, err + } + return &entities.PodInspectReport{PodInspect: inspect}, nil +} |