aboutsummaryrefslogtreecommitdiff
path: root/cmd/podmanV2/pods/pod.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 /cmd/podmanV2/pods/pod.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 'cmd/podmanV2/pods/pod.go')
-rw-r--r--cmd/podmanV2/pods/pod.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/cmd/podmanV2/pods/pod.go b/cmd/podmanV2/pods/pod.go
index 81c0d33e1..3766893bb 100644
--- a/cmd/podmanV2/pods/pod.go
+++ b/cmd/podmanV2/pods/pod.go
@@ -1,6 +1,9 @@
package pods
import (
+ "strings"
+ "text/template"
+
"github.com/containers/libpod/cmd/podmanV2/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
@@ -18,6 +21,33 @@ var (
}
)
+var podFuncMap = template.FuncMap{
+ "numCons": func(cons []*entities.ListPodContainer) int {
+ return len(cons)
+ },
+ "podcids": func(cons []*entities.ListPodContainer) string {
+ var ctrids []string
+ for _, c := range cons {
+ ctrids = append(ctrids, c.Id[:12])
+ }
+ return strings.Join(ctrids, ",")
+ },
+ "podconnames": func(cons []*entities.ListPodContainer) string {
+ var ctrNames []string
+ for _, c := range cons {
+ ctrNames = append(ctrNames, c.Names[:12])
+ }
+ return strings.Join(ctrNames, ",")
+ },
+ "podconstatuses": func(cons []*entities.ListPodContainer) string {
+ var statuses []string
+ for _, c := range cons {
+ statuses = append(statuses, c.Status)
+ }
+ return strings.Join(statuses, ",")
+ },
+}
+
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},