mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 09:32:52 +00:00
14 lines
217 B
Go
14 lines
217 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
// addCmd represents the add command
|
|
var addCmd = &cobra.Command{
|
|
Use: "add",
|
|
Short: "Add nodes to kubernetes cluster",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(addCmd)
|
|
}
|