diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-04 13:59:55 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-06 12:12:59 -0500 |
commit | b22254dc8bfdea5153761e93298182286f874bac (patch) | |
tree | 16ff841496724a6b600824d06900a075d429e7dc /cmd/podmanV2/pods/ps.go | |
parent | e318b09b6800ddb013ddf3b9a2fb99ebc55bd920 (diff) | |
download | podman-b22254dc8bfdea5153761e93298182286f874bac.tar.gz podman-b22254dc8bfdea5153761e93298182286f874bac.tar.bz2 podman-b22254dc8bfdea5153761e93298182286f874bac.zip |
podmanv2 ps
add the ability to list containers
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podmanV2/pods/ps.go')
-rw-r--r-- | cmd/podmanV2/pods/ps.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podmanV2/pods/ps.go b/cmd/podmanV2/pods/ps.go index 9546dff9e..9875263ac 100644 --- a/cmd/podmanV2/pods/ps.go +++ b/cmd/podmanV2/pods/ps.go @@ -88,7 +88,7 @@ func pods(cmd *cobra.Command, args []string) error { fmt.Println(string(b)) return nil } - headers, row := createPodPsOut(cmd) + headers, row := createPodPsOut() if psInput.Quiet { if noTrunc { row = "{{.Id}}\n" @@ -123,7 +123,7 @@ func pods(cmd *cobra.Command, args []string) error { return nil } -func createPodPsOut(cmd *cobra.Command) (string, string) { +func createPodPsOut() (string, string) { var row string headers := defaultHeaders if noTrunc { |