orchard/internal/command/create/create.go

21 lines
310 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(),
newCreateImagePullJob(),
)
return command
}