commands: driver management command stubs

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2019-04-11 17:24:24 -07:00
parent 4586e0ed18
commit 950180ed82
7 changed files with 254 additions and 0 deletions

39
commands/inspect.go Normal file
View File

@ -0,0 +1,39 @@
package commands
import (
"fmt"
"github.com/docker/cli/cli"
"github.com/docker/cli/cli/command"
"github.com/spf13/cobra"
)
type inspectOptions struct {
bootstrap bool
}
func runInspect(dockerCli command.Cli, in inspectOptions) error {
fmt.Printf("%+v\n", in)
return nil
}
func inspectCmd(dockerCli command.Cli) *cobra.Command {
var options inspectOptions
cmd := &cobra.Command{
Use: "inspect [NAME]",
Short: "Inspect current builder instance",
Args: cli.RequiresMaxArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
return runInspect(dockerCli, options)
},
}
flags := cmd.Flags()
flags.BoolVar(&options.bootstrap, "bootstrap", false, "Ensure builder has booted before inspecting")
_ = flags
return cmd
}