-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcmd.go
More file actions
334 lines (304 loc) · 7.8 KB
/
cmd.go
File metadata and controls
334 lines (304 loc) · 7.8 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
package cmd
import (
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"regexp"
"strconv"
"strings"
"github.com/deis/deis/deisctl/backend"
"github.com/deis/deis/deisctl/config"
"github.com/deis/deis/deisctl/constant"
"github.com/deis/deis/deisctl/update"
"github.com/deis/deis/deisctl/utils"
"github.com/docopt/docopt-go"
)
const (
PlatformInstallCommand string = "platform"
)
var (
DefaultDataContainers = []string{
"database-data",
"registry-data",
"logger-data",
}
)
func ListUnits(b backend.Backend) error {
err := b.ListUnits()
return err
}
func ListUnitFiles(b backend.Backend) error {
err := b.ListUnitFiles()
return err
}
func Scale(b backend.Backend, targets []string) error {
for _, target := range targets {
component, num, err := splitScaleTarget(target)
if err != nil {
return err
}
// the router is the only component that can scale past 1 at the moment
if num > 1 && !strings.Contains(component, "router") {
return fmt.Errorf("cannot scale %s past 1", component)
}
if err := b.Scale(component, num); err != nil {
return err
}
}
return nil
}
func Start(b backend.Backend, targets []string) error {
// if target is platform, start all services
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return StartPlatform(b)
}
return b.Start(targets)
}
func StartPlatform(b backend.Backend) error {
fmt.Println(utils.DeisIfy("Starting Deis..."))
if err := startDataContainers(b); err != nil {
return err
}
if err := startDefaultServices(b); err != nil {
return err
}
fmt.Println("Deis started.")
return nil
}
func startDataContainers(b backend.Backend) error {
fmt.Println("Launching data containers...")
if err := b.Start(DefaultDataContainers); err != nil {
return err
}
fmt.Println("Data containers launched.")
return nil
}
func startDefaultServices(b backend.Backend) error {
fmt.Println("Launching service containers...")
if err := Start(b, []string{"logger"}); err != nil {
return err
}
if err := Start(b, []string{"cache", "router", "database", "controller", "registry", "builder"}); err != nil {
return err
}
fmt.Println("Service containers launched.")
return nil
}
func Stop(b backend.Backend, targets []string) error {
// if target is platform, stop all services
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return StopPlatform(b)
}
return b.Stop(targets)
}
func StopPlatform(b backend.Backend) error {
fmt.Println("Stopping Deis...")
if err := stopDefaultServices(b); err != nil {
return err
}
fmt.Println("Deis stopped.")
return nil
}
func stopDefaultServices(b backend.Backend) error {
fmt.Println("Stopping service containers...")
if err := Stop(b, []string{"builder", "registry", "controller", "database", "cache", "router", "logger"}); err != nil {
return err
}
fmt.Println("Service containers stopped.")
return nil
}
func Restart(b backend.Backend, targets []string) error {
if err := b.Stop(targets); err != nil {
return err
}
return b.Start(targets)
}
func Status(b backend.Backend, targets []string) error {
for _, target := range targets {
if err := b.Status(target); err != nil {
return err
}
}
return nil
}
func Journal(b backend.Backend, targets []string) error {
for _, target := range targets {
if err := b.Journal(target); err != nil {
return err
}
}
return nil
}
func Install(b backend.Backend, targets []string) error {
// if target is platform, install all services
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return InstallPlatform(b)
}
// otherwise create the specific targets
for i, target := range targets {
// if we're installing a component without a number attached,
// consider the user doesn't know better
if !strings.Contains(target, "@") {
targets[i] += "@1"
}
}
return b.Create(targets)
}
func InstallPlatform(b backend.Backend) error {
fmt.Println(utils.DeisIfy("Installing Deis..."))
if err := installDataContainers(b); err != nil {
return err
}
if err := installDefaultServices(b); err != nil {
return err
}
fmt.Println("Deis installed.")
fmt.Println("Please run `deisctl start platform` to boot up Deis.")
return nil
}
func installDataContainers(b backend.Backend) error {
fmt.Println("Scheduling data containers...")
if err := b.Create(DefaultDataContainers); err != nil {
return err
}
fmt.Println("Data containers scheduled.")
return nil
}
func installDefaultServices(b backend.Backend) error {
// start service containers
targets := []string{
"database=1",
"cache=1",
"logger=1",
"registry=1",
"controller=1",
"builder=1",
"router=1"}
fmt.Println("Scheduling service containers...")
if err := Scale(b, targets); err != nil {
return err
}
fmt.Println("Service containers scheduled.")
return nil
}
func Uninstall(b backend.Backend, targets []string) error {
// if target is platform, uninstall all services
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return uninstallAllServices(b)
}
// uninstall the specific target
return b.Destroy(targets)
}
func uninstallAllServices(b backend.Backend) error {
targets := []string{
"database=0",
"cache=0",
"logger=0",
"registry=0",
"controller=0",
"builder=0",
"router=0"}
fmt.Println("Destroying service containers...")
err := Scale(b, targets)
fmt.Println("Service containers destroyed.")
return err
}
func splitScaleTarget(target string) (c string, num int, err error) {
r := regexp.MustCompile(`([a-z-]+)=([\d]+)`)
match := r.FindStringSubmatch(target)
if len(match) == 0 {
err = fmt.Errorf("Could not parse: %v", target)
return
}
c = match[1]
num, err = strconv.Atoi(match[2])
if err != nil {
return
}
return
}
func Config() error {
if err := config.Config(); err != nil {
return err
}
return nil
}
func Update() error {
if err := utils.Execute(constant.HooksDir + "pre-update"); err != nil {
fmt.Println("pre-updatehook failed")
return err
}
if err := update.Update(); err != nil {
fmt.Println("update engine failed")
return err
}
if err := utils.Execute(constant.HooksDir + "post-update"); err != nil {
fmt.Println("post-updatehook failed")
return err
}
return nil
}
func RefreshUnits() error {
usage := `Refreshes local unit files from the master repository.
deisctl looks for unit files in these directories, in this order:
- the $DEISCTL_UNITS environment variable, if set
- $HOME/.deis/units
- /var/lib/deis/units
Usage:
deisctl refresh-units [-p <target>] [-t <tag>]
Options:
-p --path=<target> where to save unit files [default: /var/lib/deis/units]
-t --tag=<tag> git tag, branch, or SHA to use when downloading unit files
[default: master]
`
// parse command-line arguments
args, err := docopt.Parse(usage, nil, true, "", false)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(2)
}
dir := args["--path"].(string)
// create the target dir if necessary
if err := os.MkdirAll(dir, 0755); err != nil {
return err
}
// download and save the unit files to the specified path
rootURL := "https://raw.githubusercontent.com/deis/deis/deisctl/"
tag := args["--tag"].(string)
units := []string{
"deis-builder.service",
"deis-cache.service",
"deis-controller.service",
"deis-database.service",
"deis-database-data.service",
"deis-logger.service",
"deis-logger-data.service",
"deis-registry.service",
"deis-registry-data.service",
"deis-router.service",
}
for _, unit := range units {
src := rootURL + tag + "/units/" + unit
dest := filepath.Join(dir, unit)
res, err := http.Get(src)
if err != nil {
return err
}
if res.StatusCode != 200 {
return errors.New(res.Status)
}
defer res.Body.Close()
data, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
if err = ioutil.WriteFile(dest, data, 0644); err != nil {
return err
}
fmt.Printf("Refreshed %s from %s\n", unit, tag)
}
return nil
}