-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathget_app_config.go
211 lines (194 loc) · 4.76 KB
/
get_app_config.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package main
import (
"fmt"
"github.com/urfave/cli"
)
func GetAppConfig(env Env) *cli.App {
app := cli.NewApp()
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "config",
Value: "",
Usage: "Path to alternative config default is $HOME/.config/OpenNebulaUp/opennebulaup.config",
},
cli.StringFlag{
Name: "env",
Value: "base",
Usage: "The OpenNebulaEnvironment",
Destination: &env.environment,
},
cli.StringFlag{
Name: "ProjectsPath",
Value: env.config.ProjectsPath,
Usage: "An Alternative Projects Path not defined in config",
Destination: &env.config.ProjectsPath,
},
}
app.Commands = []cli.Command{
{
Name: "up",
Usage: "starts and provisions the opennebula machine",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaUp(env, mach, false)
return nil
},
},
{
Name: "hold",
Usage: "starts the opennebula machine on hold ( recommended to use up )",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaHold(env, mach)
return nil
},
},
{
Name: "list",
Usage: "list all the available machines without status",
Action: func(c *cli.Context) error {
OpenNebulaList(env.machs)
return nil
},
},
{
Name: "destroy",
Usage: "stops and deletes all traces of the opennebula machine",
Action: func(c *cli.Context) error {
mach := c.Args().First()
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
if mach == "" {
OpenNebulaDestroyAll(env, c.Bool("f"))
return nil
}
OpenNebulaDestroy(env, mach)
return nil
},
Flags: []cli.Flag{
cli.BoolFlag{
Name: "f, force",
},
},
},
{
Name: "resume",
Usage: "Resume a VM that is in poweroff or suspend mode",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaResume(env, mach)
return nil
},
},
{
Name: "reboot",
Usage: "Reboot a VM that is currently in OpenNebula",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaReboot(env, mach)
return nil
},
},
{
Name: "poweroff",
Usage: "Turn off VM but keep allocated resources",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaPowerOff(env, mach)
return nil
},
},
{
Name: "created",
Usage: "outputs only cretaed machines",
Action: func(c *cli.Context) error {
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
PrintCreatedStatus(env.machs)
return nil
},
},
{
Name: "status",
Usage: "outputs status of the opennebula machines",
Action: func(c *cli.Context) error {
mach := c.Args().First()
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
if mach == "" {
PrintAllStatus(env.machs)
return nil
}
PrintSingleStatus(env.machs, mach)
return nil
},
},
{
Name: "rsync",
Usage: "Restarts Rsync watcher for salt-master ",
Action: func(c *cli.Context) error {
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
RestartRsync(env)
return nil
},
},
{
Name: "print",
Usage: "prints all relevant data for particular machine",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify A Machine")
return nil
}
PrintSingleMachine(env, mach)
return nil
},
},
{
Name: "ssh",
Usage: "connects to machine via SSH",
Action: func(c *cli.Context) error {
mach := c.Args().First()
if mach == "" {
fmt.Println("Please Specify a machine")
return nil
}
env.machs = SetMachinesStatus(&env.connection, env.machs, env)
OpenNebulaSsh(env, mach)
return nil
},
},
{
Name: "completion",
Usage: "output bash completion script. source <(OpenNebulaUp completion)",
Action: completion,
},
}
app.Version = "0.2.1"
app.Name = "OpenNebulaUp"
app.Usage = "CLI for managing OpenNebula VMs"
return app
}