diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-13 17:47:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 17:47:31 +0200 |
commit | 465b4bc563b274ec166868aae079a65ee0284b1d (patch) | |
tree | 960fa4c1c5e4fd308cb41acbfefb19fb30484229 /cmd/podmanV2/pods/pod.go | |
parent | 309a7f7d1bbd046b4bd1a961a7e8c5313aa11b8e (diff) | |
parent | 6f650a512948a85bbb1a8830d5700a6ce9375c1d (diff) | |
download | podman-465b4bc563b274ec166868aae079a65ee0284b1d.tar.gz podman-465b4bc563b274ec166868aae079a65ee0284b1d.tar.bz2 podman-465b4bc563b274ec166868aae079a65ee0284b1d.zip |
Merge pull request #5778 from baude/v2removetemplates
podmanv2 history and image remove templates
Diffstat (limited to 'cmd/podmanV2/pods/pod.go')
-rw-r--r-- | cmd/podmanV2/pods/pod.go | 30 |
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}, |