kubekey/cmd/add.go
“Forest-L 01828bd2b9 update add nodes
Signed-off-by: “Forest-L <lilin@yunify.com>
2020-08-24 22:30:22 +08:00

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)
}