-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.go
96 lines (81 loc) · 1.94 KB
/
commands.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package main
import (
"github.com/SnowRipple/crane/command"
"github.com/SnowRipple/crane/config"
"github.com/mitchellh/cli"
"os"
)
// Commands is the mapping of all the available Crane commands.
var Commands map[string]cli.CommandFactory
func init() {
ui := &cli.BasicUi{Writer: os.Stdout}
Commands = map[string]cli.CommandFactory{
"create": func() (cli.Command, error) {
return &command.CreateCommand{
Ui: ui,
}, nil
},
"pull": func() (cli.Command, error) {
return &command.PullCommand{
Ui: ui,
Containers: config.ReadConfig().CraneConfig.Containers,
}, nil
},
"rmi": func() (cli.Command, error) {
return &command.RemoveImageCommand{
Ui: ui,
Containers: config.ReadConfig().CraneConfig.Containers,
}, nil
},
"start": func() (cli.Command, error) {
return &command.StartCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"destroy": func() (cli.Command, error) {
return &command.DestroyCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"build": func() (cli.Command, error) {
return &command.BuildImageCommand{
Ui: ui,
Containers: config.ReadConfig().CraneConfig.Containers,
}, nil
},
"run": func() (cli.Command, error) {
return &command.RunCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"runall": func() (cli.Command, error) {
return &command.RunallCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"enter": func() (cli.Command, error) {
return &command.EnterCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"freeze": func() (cli.Command, error) {
return &command.FreezeCommand{
Ui: ui,
Config: config.ReadConfig(),
}, nil
},
"version": func() (cli.Command, error) {
return &command.VersionCommand{
Revision: GitCommit,
Version: VERSION,
Status: STATUS,
Ui: ui,
}, nil
},
}
}