summaryrefslogtreecommitdiff
path: root/cmd/podmanV2/pods/pod.go
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-09 08:47:15 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-13 09:15:24 -0500
commit6f650a512948a85bbb1a8830d5700a6ce9375c1d (patch)
tree8cc88145de5cf238c2c3a0475b9553d8a5965156 /cmd/podmanV2/pods/pod.go
parent1593d4c052fc0795e6fe31917edcb1ecbe5ee192 (diff)
downloadpodman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.tar.gz
podman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.tar.bz2
podman-6f650a512948a85bbb1a8830d5700a6ce9375c1d.zip
podmanv2 history and image remove templates
remove the use of template functions images and history to allow for straight-forward user experience. instead of templates we use structs and struct methods. 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, 0 insertions, 30 deletions
diff --git a/cmd/podmanV2/pods/pod.go b/cmd/podmanV2/pods/pod.go
index 3766893bb..81c0d33e1 100644
--- a/cmd/podmanV2/pods/pod.go
+++ b/cmd/podmanV2/pods/pod.go
@@ -1,9 +1,6 @@
package pods
import (
- "strings"
- "text/template"
-
"github.com/containers/libpod/cmd/podmanV2/registry"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
@@ -21,33 +18,6 @@ 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},