summaryrefslogtreecommitdiff
path: root/cmd/podman/pod.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-02-25 14:26:18 -0600
committerbaude <bbaude@redhat.com>2019-03-06 11:01:25 -0600
commit788f818cc53fbd68267c2c6ab5de8655938414cb (patch)
tree34f10bb4c0f1153e99524070b3d8da63d975ea42 /cmd/podman/pod.go
parent7418ff988b520466d04cacf6d88b50d67bfa8ddf (diff)
downloadpodman-788f818cc53fbd68267c2c6ab5de8655938414cb.tar.gz
podman-788f818cc53fbd68267c2c6ab5de8655938414cb.tar.bz2
podman-788f818cc53fbd68267c2c6ab5de8655938414cb.zip
podman-remote pod top|stats
this is the final enablement for the pod subcommand. it includes the ability to run podman-remote pod top and stats. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/pod.go')
-rw-r--r--cmd/podman/pod.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/pod.go b/cmd/podman/pod.go
index c1350bd4d..7067f2429 100644
--- a/cmd/podman/pod.go
+++ b/cmd/podman/pod.go
@@ -29,12 +29,13 @@ var podSubCommands = []*cobra.Command{
_podRestartCommand,
_podRmCommand,
_podStartCommand,
+ _podStatsCommand,
_podStopCommand,
+ _podTopCommand,
_podUnpauseCommand,
}
func init() {
podCommand.AddCommand(podSubCommands...)
- podCommand.AddCommand(getPodSubCommands()...)
podCommand.SetUsageTemplate(UsageTemplate())
}