orchard/internal/command/create/create.go

17 lines
275 B
Go

package create
import (
"github.com/spf13/cobra"
)
func NewCommand() *cobra.Command {
command := &cobra.Command{
Use: "create",
Short: "Create resources on the controller",
}
command.AddCommand(newCreateVMCommand(), newCreateServiceAccount())
return command
}