summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/utils/pods.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-03-29 14:46:35 -0500
committerBrent Baude <bbaude@redhat.com>2020-03-31 19:32:37 -0500
commit7def91910c07ee3782b2106f76877d57d646f9b4 (patch)
tree6b1f55e33d7c51df2084ea5365a1059237e17511 /pkg/api/handlers/utils/pods.go
parent6d36d05447fd594bedebea8a9a4366d348a78290 (diff)
downloadpodman-7def91910c07ee3782b2106f76877d57d646f9b4.tar.gz
podman-7def91910c07ee3782b2106f76877d57d646f9b4.tar.bz2
podman-7def91910c07ee3782b2106f76877d57d646f9b4.zip
podmanv2 pod ps
add the ability to list pods in podmanv2 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers/utils/pods.go')
-rw-r--r--pkg/api/handlers/utils/pods.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/api/handlers/utils/pods.go b/pkg/api/handlers/utils/pods.go
index 79d1a5090..d47053eda 100644
--- a/pkg/api/handlers/utils/pods.go
+++ b/pkg/api/handlers/utils/pods.go
@@ -59,6 +59,10 @@ func GetPods(w http.ResponseWriter, r *http.Request) ([]*entities.ListPodsReport
if err != nil {
return nil, err
}
+ infraId, err := pod.InfraContainerID()
+ if err != nil {
+ return nil, err
+ }
lp := entities.ListPodsReport{
Cgroup: pod.CgroupParent(),
Created: pod.CreatedTime(),
@@ -66,6 +70,7 @@ func GetPods(w http.ResponseWriter, r *http.Request) ([]*entities.ListPodsReport
Name: pod.Name(),
Namespace: pod.Namespace(),
Status: status,
+ InfraId: infraId,
}
for _, ctr := range ctrs {
state, err := ctr.State()