diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-18 14:01:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 14:01:43 -0700 |
commit | 07e10d9dd6c0c0828637f770234266daa182fc95 (patch) | |
tree | 9638b5fa9777681a51f93baae5a61042a2045c74 /cmd/podman/pod_stats.go | |
parent | 41019f747280ba2c47df2ce6f83ddebfc2000745 (diff) | |
parent | abf3500e8f672e71c6e91fd5bbb70da6abd4d5af (diff) | |
download | podman-07e10d9dd6c0c0828637f770234266daa182fc95.tar.gz podman-07e10d9dd6c0c0828637f770234266daa182fc95.tar.bz2 podman-07e10d9dd6c0c0828637f770234266daa182fc95.zip |
Merge pull request #2700 from edsantiago/podman_umount_args
podman umount: error out if called with no args
Diffstat (limited to 'cmd/podman/pod_stats.go')
-rw-r--r-- | cmd/podman/pod_stats.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/pod_stats.go b/cmd/podman/pod_stats.go index 701051938..e8ff322ce 100644 --- a/cmd/podman/pod_stats.go +++ b/cmd/podman/pod_stats.go @@ -25,7 +25,7 @@ var ( podStatsDescription = `For each specified pod this command will display percentage of CPU, memory, network I/O, block I/O and PIDs for containers in one the pods.` _podStatsCommand = &cobra.Command{ - Use: "stats [flags] POD [POD...]", + Use: "stats [flags] [POD...]", Short: "Display a live stream of resource usage statistics for the containers in one or more pods", Long: podStatsDescription, RunE: func(cmd *cobra.Command, args []string) error { |