From bec394d083ca620c10c1d8d141582818e2e124dc Mon Sep 17 00:00:00 2001 From: glkappe Date: Wed, 6 Mar 2024 21:57:01 +0800 Subject: [PATCH] Update --ssh desc --- components/cluster/command/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cluster/command/root.go b/components/cluster/command/root.go index e2cdf15e2f..c91f41cb02 100644 --- a/components/cluster/command/root.go +++ b/components/cluster/command/root.go @@ -164,7 +164,7 @@ func init() { rootCmd.PersistentFlags().Uint64Var(&gOpt.OptTimeout, "wait-timeout", 120, "Timeout in seconds to wait for an operation to complete, ignored for operations that don't fit.") rootCmd.PersistentFlags().BoolVarP(&skipConfirm, "yes", "y", false, "Skip all confirmations and assumes 'yes'") rootCmd.PersistentFlags().BoolVar(&gOpt.NativeSSH, "native-ssh", gOpt.NativeSSH, "(EXPERIMENTAL) Use the native SSH client installed on local system instead of the build-in one.") - rootCmd.PersistentFlags().StringVar((*string)(&gOpt.SSHType), "ssh", "", "(EXPERIMENTAL) The executor type: 'builtin', 'system', 'none'.") + rootCmd.PersistentFlags().StringVar((*string)(&gOpt.SSHType), "ssh", "", "(EXPERIMENTAL) The executor type: 'builtin', 'system', 'none' (default "builtin").") rootCmd.PersistentFlags().IntVarP(&gOpt.Concurrency, "concurrency", "c", 5, "max number of parallel tasks allowed") rootCmd.PersistentFlags().StringVar(&gOpt.DisplayMode, "format", "default", "(EXPERIMENTAL) The format of output, available values are [default, json]") rootCmd.PersistentFlags().StringVar(&gOpt.SSHProxyHost, "ssh-proxy-host", "", "The SSH proxy host used to connect to remote host.")