-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmesos.go
More file actions
174 lines (123 loc) · 4.16 KB
/
mesos.go
File metadata and controls
174 lines (123 loc) · 4.16 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
package cmd
import (
"fmt"
"sync"
"time"
"github.com/deis/deis/deisctl/backend"
"github.com/deis/deis/deisctl/utils"
)
// InstallMesos loads all Mesos units for StartMesos
func InstallMesos(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("Installing Mesos...")
installMesosServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please run `deisctl start mesos` to boot up Mesos.")
return nil
}
func installMesosServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Zookeeper...")
b.Create([]string{"zookeeper"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Master...")
b.Create([]string{"mesos-master"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Slave...")
b.Create([]string{"mesos-slave"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Marathon Framework...")
b.Create([]string{"mesos-marathon"}, wg, outchan, errchan)
wg.Wait()
}
// UninstallMesos unloads and uninstalls all Mesos component definitions
func UninstallMesos(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 Mesos...")
uninstallMesosServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
return nil
}
func uninstallMesosServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) error {
outchan <- fmt.Sprintf("Marathon Framework...")
b.Destroy([]string{"mesos-marathon"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Slave...")
b.Destroy([]string{"mesos-slave"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Master...")
b.Destroy([]string{"mesos-master"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Zookeeper...")
b.Destroy([]string{"zookeeper"}, wg, outchan, errchan)
wg.Wait()
return nil
}
// StartMesos activates all Mesos components.
func StartMesos(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 Mesos...")
startMesosServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please use `deisctl config controller set schedulerModule=mesos_marathon`")
return nil
}
func startMesosServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Zookeeper...")
b.Start([]string{"zookeeper"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Master...")
b.Start([]string{"mesos-master"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Slave...")
b.Start([]string{"mesos-slave"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Marathon Framework...")
b.Start([]string{"mesos-marathon"}, wg, outchan, errchan)
wg.Wait()
}
// StopMesos deactivates all Mesos components.
func StopMesos(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 Mesos...")
stopMesosServices(b, &wg, outchan, errchan)
wg.Wait()
close(outchan)
fmt.Println("Done.")
fmt.Println()
fmt.Println("Please run `deisctl start mesos` to restart Mesos.")
return nil
}
func stopMesosServices(b backend.Backend, wg *sync.WaitGroup, outchan chan string, errchan chan error) {
outchan <- fmt.Sprintf("Marathon Framework...")
b.Stop([]string{"mesos-marathon"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Slave...")
b.Stop([]string{"mesos-slave"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Mesos Master...")
b.Stop([]string{"mesos-master"}, wg, outchan, errchan)
wg.Wait()
outchan <- fmt.Sprintf("Zookeeper...")
b.Stop([]string{"zookeeper"}, wg, outchan, errchan)
wg.Wait()
}