mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
add some specifications on the top command
This commit is contained in:
parent
281053d666
commit
a153f6f885
@ -32,13 +32,15 @@ var (
|
|||||||
topLong = templates.LongDesc(`
|
topLong = templates.LongDesc(`
|
||||||
Display Resource (CPU/Memory/Storage) usage.
|
Display Resource (CPU/Memory/Storage) usage.
|
||||||
|
|
||||||
The top command allows you to see the resource consumption for nodes or pods.`)
|
The top command allows you to see the resource consumption for nodes or pods.
|
||||||
|
|
||||||
|
This command is available only if the Heapster works fine on the server. `)
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewCmdTop(f cmdutil.Factory, out, errOut io.Writer) *cobra.Command {
|
func NewCmdTop(f cmdutil.Factory, out, errOut io.Writer) *cobra.Command {
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "top",
|
Use: "top",
|
||||||
Short: "Display Resource (CPU/Memory/Storage) usage",
|
Short: "Display Resource (CPU/Memory/Storage) usage, available only if Heapster works fine on the server.",
|
||||||
Long: topLong,
|
Long: topLong,
|
||||||
Run: cmdutil.DefaultSubCommandRun(errOut),
|
Run: cmdutil.DefaultSubCommandRun(errOut),
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user