summaryrefslogtreecommitdiff
path: root/cmd/podman/pod_top.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-03-06 17:10:20 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-03-07 13:46:59 -0500
commit9a39c60e46d927489efa0ef5d4ece7c76fceceb7 (patch)
tree980c7dec92a361532a18c601f3fb34767e99b0f4 /cmd/podman/pod_top.go
parent1b253cf73a360557196213684cec63b37407ed7c (diff)
downloadpodman-9a39c60e46d927489efa0ef5d4ece7c76fceceb7.tar.gz
podman-9a39c60e46d927489efa0ef5d4ece7c76fceceb7.tar.bz2
podman-9a39c60e46d927489efa0ef5d4ece7c76fceceb7.zip
Fix help commands to show short and long description.
Cleanup lots of help information to look good when displayed. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd/podman/pod_top.go')
-rw-r--r--cmd/podman/pod_top.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/cmd/podman/pod_top.go b/cmd/podman/pod_top.go
index c5383d376..c9a6d8822 100644
--- a/cmd/podman/pod_top.go
+++ b/cmd/podman/pod_top.go
@@ -16,12 +16,10 @@ import (
var (
podTopCommand cliconfig.PodTopValues
- podTopDescription = fmt.Sprintf(`Display the running processes containers in a pod. Specify format descriptors
-to alter the output. You may run "podman pod top -l pid pcpu seccomp" to print
-the process ID, the CPU percentage and the seccomp mode of each process of
-the latest pod.
-%s
-`, getDescriptorString())
+ podTopDescription = fmt.Sprintf(`Specify format descriptors to alter the output.
+
+ You may run "podman pod top -l pid pcpu seccomp" to print the process ID, the CPU percentage and the seccomp mode of each process of the latest pod.
+%s`, getDescriptorString())
_podTopCommand = &cobra.Command{
Use: "top [flags] CONTAINER [FORMAT-DESCRIPTORS]",
@@ -40,6 +38,7 @@ the latest pod.
func init() {
podTopCommand.Command = _podTopCommand
+ podTopCommand.SetHelpTemplate(HelpTemplate())
podTopCommand.SetUsageTemplate(UsageTemplate())
flags := podTopCommand.Flags()
flags.BoolVarP(&podTopCommand.Latest, "latest,", "l", false, "Act on the latest pod podman is aware of")