-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcmd.go
More file actions
528 lines (426 loc) · 12.9 KB
/
cmd.go
File metadata and controls
528 lines (426 loc) · 12.9 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
package cmd
import (
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"path"
"path/filepath"
"regexp"
"strconv"
"strings"
"sync"
"time"
"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"
docopt "github.com/docopt/docopt-go"
)
const (
PlatformInstallCommand string = "platform"
)
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 {
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
for _, target := range targets {
component, num, err := splitScaleTarget(target)
if err != nil {
return err
}
// the router is the only component that can scale at the moment
if !strings.Contains(component, "router") {
return fmt.Errorf("cannot scale %s components", component)
}
b.Scale(component, num, &wg, outchan, errchan)
wg.Wait()
}
close(outchan)
return nil
}
func Start(b backend.Backend, targets []string) error {
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return StartPlatform(b)
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
b.Start(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
return nil
}
// checkRequiredKeys exist in etcd
func checkRequiredKeys() error {
if err := config.CheckConfig("/deis/platform/", "domain"); err != nil {
return fmt.Errorf(`Missing platform domain, use:
deisctl config platform set domain=<your-domain>`)
}
if err := config.CheckConfig("/deis/platform/", "sshPrivateKey"); err != nil {
fmt.Printf(`Warning: Missing sshPrivateKey, "deis run" will be unavailable. Use:
deisctl config platform set sshPrivateKey=<path-to-key>
`)
}
return nil
}
func StartPlatform(b backend.Backend) error {
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
outchan <- utils.DeisIfy("Starting Deis...")
startDefaultServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please use `deis register` to setup an administrator account.")
return nil
}
func startDefaultServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
// create separate channels for background tasks
_outchan := make(chan string)
_errchan := make(chan error)
var _wg sync.WaitGroup
// wait for groups to come up
outchan <- fmt.Sprintf("Storage subsystem...")
b.Start([]string{"store-monitor"}, wg, outchan, errchan)
wg.Wait()
b.Start([]string{"store-daemon"}, wg, outchan, errchan)
wg.Wait()
b.Start([]string{"store-metadata"}, wg, outchan, errchan)
wg.Wait()
// we start gateway first to give metadata time to come up for volume
b.Start([]string{"store-gateway"}, wg, outchan, errchan)
wg.Wait()
b.Start([]string{"store-volume"}, wg, outchan, errchan)
wg.Wait()
// start logging subsystem first to collect logs from other components
outchan <- fmt.Sprintf("Logging subsystem...")
b.Start([]string{"logger"}, wg, outchan, errchan)
wg.Wait()
b.Start([]string{"logspout"}, wg, outchan, errchan)
wg.Wait()
// optimization: start all remaining services in the background
b.Start([]string{
"cache", "database", "registry", "controller", "builder",
"publisher", "router@1", "router@2", "router@3"},
&_wg, _outchan, _errchan)
outchan <- fmt.Sprintf("Control plane...")
b.Start([]string{"cache", "database", "registry", "controller"}, wg, outchan, errchan)
wg.Wait()
b.Start([]string{"builder"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Data plane...")
b.Start([]string{"publisher"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Routing mesh...")
b.Start([]string{"router@1", "router@2", "router@3"}, wg, outchan, errchan)
wg.Wait()
}
func Stop(b backend.Backend, targets []string) error {
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return StopPlatform(b)
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
b.Stop(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
return nil
}
func StopPlatform(b backend.Backend) error {
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
outchan <- utils.DeisIfy("Stopping Deis...")
stopDefaultServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please run `deisctl start platform` to restart Deis.")
return nil
}
func stopDefaultServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Routing mesh...")
b.Stop([]string{"router@1", "router@2", "router@3"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Data plane...")
b.Stop([]string{"publisher"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Control plane...")
b.Stop([]string{"controller", "builder", "cache", "database", "registry"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Logging subsystem...")
b.Stop([]string{"logger", "logspout"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Storage subsystem...")
b.Stop([]string{"store-volume", "store-gateway"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-metadata"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-daemon"}, wg, outchan, errchan)
wg.Wait()
b.Stop([]string{"store-monitor"}, wg, outchan, errchan)
wg.Wait()
}
func Restart(b backend.Backend, targets []string) error {
if err := Stop(b, targets); err != nil {
return err
}
return Start(b, 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)
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
// otherwise create the specific targets
b.Create(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
return nil
}
func InstallPlatform(b backend.Backend) error {
if err := checkRequiredKeys(); err != nil {
return err
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
outchan <- utils.DeisIfy("Installing Deis...")
installDefaultServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please run `deisctl start platform` to boot up Deis.")
return nil
}
func installDefaultServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Storage subsystem...")
b.Create([]string{"store-daemon", "store-monitor", "store-metadata", "store-volume", "store-gateway"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Logging subsystem...")
b.Create([]string{"logger", "logspout"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Control plane...")
b.Create([]string{"cache", "database", "registry", "controller", "builder"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Data plane...")
b.Create([]string{"publisher"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Routing mesh...")
b.Create([]string{"router@1", "router@2", "router@3"}, wg, outchan, errchan)
wg.Wait()
}
func Uninstall(b backend.Backend, targets []string) error {
// if target is platform, uninstall all services
if len(targets) == 1 && targets[0] == PlatformInstallCommand {
return UninstallPlatform(b)
}
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
// uninstall the specific target
b.Destroy(targets, &wg, outchan, errchan)
wg.Wait()
close(outchan)
return nil
}
func UninstallPlatform(b backend.Backend) error {
outchan := make(chan string)
errchan := make(chan error)
var wg sync.WaitGroup
go printState(outchan, errchan, 500*time.Millisecond)
outchan <- utils.DeisIfy("Uninstalling Deis...")
uninstallAllServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
return nil
}
func uninstallAllServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) error {
outchan <- fmt.Sprintf("Routing mesh...")
b.Destroy([]string{"router@1", "router@2", "router@3"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Data plane...")
b.Destroy([]string{"publisher"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Control plane...")
b.Destroy([]string{"controller", "builder", "cache", "database", "registry"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Logging subsystem...")
b.Destroy([]string{"logger", "logspout"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Storage subsystem...")
b.Destroy([]string{"store-volume", "store-gateway"}, wg, outchan, errchan)
wg.Wait()
b.Destroy([]string{"store-metadata"}, wg, outchan, errchan)
wg.Wait()
b.Destroy([]string{"store-daemon"}, wg, outchan, errchan)
wg.Wait()
b.Destroy([]string{"store-monitor"}, wg, outchan, errchan)
wg.Wait()
return nil
}
func printState(outchan chan string, errchan chan error, interval time.Duration) error {
for {
select {
case out := <-outchan:
// done on closed channel
if out == "" {
return nil
}
fmt.Println(out)
case err := <-errchan:
if err != nil {
fmt.Println(err.Error())
return err
}
}
time.Sleep(interval)
}
}
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: $HOME/.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)
if dir == "$HOME/.deis/units" || dir == "~/.deis/units" {
dir = path.Join(os.Getenv("HOME"), ".deis", "units")
}
// 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/"
tag := args["--tag"].(string)
units := []string{
"deis-builder.service",
"deis-cache.service",
"deis-controller.service",
"deis-database.service",
"deis-logger.service",
"deis-logspout.service",
"deis-publisher.service",
"deis-registry.service",
"deis-router.service",
"deis-store-daemon.service",
"deis-store-gateway.service",
"deis-store-metadata.service",
"deis-store-monitor.service",
"deis-store-volume.service",
}
for _, unit := range units {
src := rootURL + tag + "/deisctl/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
}