Update option description

This commit is contained in:
Ray Zhou 2020-05-23 13:44:03 +08:00
parent 0e92798953
commit e74617edc9
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ func NewCmdCreateCluster() *cobra.Command {
)
var clusterCmd = &cobra.Command{
Use: "cluster",
Short: "Create Kubernetes Cluster",
Short: "Create a Kubernetes or KubeSphere cluster",
RunE: func(cmd *cobra.Command, args []string) error {
logger := util.InitLogger(verbose)
return install.CreateCluster(clusterCfgFile, logger, all, verbose)

View File

@ -15,7 +15,7 @@ func NewCmdCreateEtcd() *cobra.Command {
)
var clusterCmd = &cobra.Command{
Use: "etcd",
Short: "Manage Etcd Cluster",
Short: "Manage Etcd cluster",
Run: func(cmd *cobra.Command, args []string) {
logger := util.InitLogger(true)
createEtcdCluster(clusterCfgFile, logger)