-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmesos.go
More file actions
131 lines (91 loc) · 3.17 KB
/
mesos.go
File metadata and controls
131 lines (91 loc) · 3.17 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
package cmd
import (
"fmt"
"io"
"sync"
"github.com/deis/deis/deisctl/backend"
"github.com/deis/deis/pkg/prettyprint"
)
// InstallMesos loads all Mesos units for StartMesos
func InstallMesos(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Installing Mesos/Marathon..."))
installMesosServices(b, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
fmt.Fprintln(Stdout, "Please run `deisctl start mesos` to boot up Mesos.")
return nil
}
func installMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Mesos/Marathon control plane...")
b.Create([]string{"zookeeper", "mesos-master"}, wg, out, err)
wg.Wait()
b.Create([]string{"mesos-marathon"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos/Marathon data plane...")
b.Create([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
}
// UninstallMesos unloads and uninstalls all Mesos component definitions
func UninstallMesos(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Uninstalling Mesos/Marathon..."))
uninstallMesosServices(b, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
return nil
}
func uninstallMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) error {
fmt.Fprintln(out, "Mesos/Marathon data plane...")
b.Destroy([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos/Marathon control plane...")
b.Destroy([]string{"mesos-marathon", "mesos-master", "zookeeper"}, wg, out, err)
wg.Wait()
return nil
}
// StartMesos activates all Mesos components.
func StartMesos(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Starting Mesos/Marathon..."))
startMesosServices(b, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
fmt.Fprintln(Stdout, "Please use `deisctl config controller set schedulerModule=mesos_marathon`")
return nil
}
func startMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Mesos/Marathon control plane...")
b.Start([]string{"zookeeper"}, wg, out, err)
wg.Wait()
b.Start([]string{"mesos-master"}, wg, out, err)
wg.Wait()
b.Start([]string{"mesos-marathon"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos/Marathon data plane...")
b.Start([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
wg.Wait()
}
// StopMesos deactivates all Mesos components.
func StopMesos(b backend.Backend) error {
var wg sync.WaitGroup
io.WriteString(Stdout, prettyprint.DeisIfy("Stopping Mesos/Marathon..."))
stopMesosServices(b, &wg, Stdout, Stderr)
wg.Wait()
fmt.Fprintln(Stdout, "Done.\n ")
fmt.Fprintln(Stdout, "Please run `deisctl start mesos` to restart Mesos.")
return nil
}
func stopMesosServices(b backend.Backend, wg *sync.WaitGroup, out, err io.Writer) {
fmt.Fprintln(out, "Mesos/Marathon data plane...")
b.Stop([]string{"mesos-slave"}, wg, out, err)
wg.Wait()
fmt.Fprintln(out, "Mesos/Marathon control plane...")
b.Stop([]string{"mesos-marathon"}, wg, out, err)
wg.Wait()
b.Stop([]string{"mesos-master"}, wg, out, err)
wg.Wait()
b.Stop([]string{"zookeeper"}, wg, out, err)
wg.Wait()
}