forked from shazam/jenkins-nodes-auto-scaler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
711 lines (608 loc) · 17 KB
/
main.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
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
package main
import (
"fmt"
"log"
"time"
"encoding/json"
"errors"
"flag"
"golang.org/x/net/context"
"golang.org/x/oauth2/google"
"google.golang.org/api/compute/v1"
"google.golang.org/api/option"
"google.golang.org/api/transport"
"io/ioutil"
"math/rand"
"net/http"
"os"
"strings"
"sync"
)
type JenkinsQueue struct {
Items []struct {
Buildable bool `json:"buildable"`
Why string `json:"why"`
Task struct {
Name string `json:"name"`
} `json:"task"`
} `json:"items"`
}
type JenkinsJob struct {
Color string `json:"color"`
NextBuildNumber int `json:"nextBuildNumber"`
}
type JenkinsBuildBoxInfo struct {
Idle bool `json:"idle"`
TemporarilyOffline bool `json:"temporarilyOffline"`
Offline bool `json:"offline"`
MonitorData struct {
HudsonNodeMonitorsArchitectureMonitor *string `json:"hudson.node_monitors.ArchitectureMonitor"`
} `json:"monitorData"`
}
var gceProjectName *string
var gceZone *string
var jenkinsBaseUrl *string
var jenkinsUsername *string
var jenkinsApiToken *string
var locationName *string
var workersPerBuildBox *int
var jobNameRequiringAllNodes *string
var preferredNodeToKeepOnline *string
var buildBoxesPool = []string{}
var httpClient = &http.Client{}
var service *compute.Service
var lastSeenBuildNumber int
var lastStarted = struct {
sync.RWMutex
m map[string]time.Time
}{m: make(map[string]time.Time)}
func main() {
defer func() {
if e := recover(); e != nil {
log.Printf("\n\033[31;1m%s\x1b[0m\n", e)
os.Exit(1)
}
}()
workersPerBuildBox = flag.Int("workersPerBuildBox", 2, "number of workers per build box")
localCreds := flag.Bool("useLocalCreds", false, "uses the local creds.json as credentials for Google Cloud APIs")
jobType := flag.String("jobType", "auto_scaling", "defines which job to execute: auto_scaling, all_up, all_down")
gceProjectName = flag.String("gceProjectName", "", "project name where nodes are setup in GCE")
gceZone = flag.String("gceZone", "europe-west1-b", "GCE zone where nodes have been setup")
locationName = flag.String("locationName", "Europe/London", "Location used to determine working hours")
jenkinsBaseUrl = flag.String("jenkinsBaseUrl", "", "Jenkins server base url")
jenkinsUsername = flag.String("jenkinsUsername", "", "Jenkins username")
jenkinsApiToken = flag.String("jenkinsApiToken", "", "Jenkins api token")
jobNameRequiringAllNodes = flag.String("jobNameRequiringAllNodes", "", "Jenkins job name which requires all build nodes enabled")
preferredNodeToKeepOnline = flag.String("preferredNodeToKeepOnline", "", "name of the node that should be kept online")
flag.Parse()
validateFlags()
if len(flag.Args()) == 0 {
log.Println("At least one node name has to be specified")
os.Exit(1)
}
buildBoxesPool = flag.Args()
var err error
if *localCreds {
service, err = getServiceWithCredsFile()
} else {
service, err = getServiceWithDefaultCreds()
}
if err != nil {
log.Printf("Error getting creds: %s\n", err.Error())
return
}
switch *jobType {
case "all_up":
enableAllBuildBoxes()
case "all_down":
disableAllBuildBoxes()
default:
autoScaling()
}
}
func validateFlags() {
valid := true
if *gceProjectName == "" {
log.Println("gceProjectName flag should not be empty")
valid = false
}
if *jenkinsBaseUrl == "" {
log.Println("jenkinsBaseUrl flag should not be empty")
valid = false
}
if *jenkinsApiToken == "" {
log.Println("jenkinsApiToken flag should not be empty")
valid = false
}
if *jenkinsUsername == "" {
log.Println("jenkinsUsername flag should not be empty")
valid = false
}
if !valid {
os.Exit(1)
}
}
func autoScaling() {
for {
queueSize := fetchQueueSize()
queueSize = adjustQueueSizeDependingWhetherJobRequiringAllNodesIsRunning(queueSize)
if queueSize > 0 {
log.Printf("%d jobs waiting to be executed\n", queueSize)
enableMoreNodes(queueSize)
} else if queueSize == 0 {
log.Println("No jobs in the queue")
disableUnnecessaryBuildBoxes()
}
log.Println("Iteration finished")
fmt.Println("")
time.Sleep(time.Second * 8)
}
}
func enableMoreNodes(queueSize int) {
boxesNeeded := calculateNumberOfNodesToEnable(queueSize)
log.Println("Checking if any box is offline")
var wg sync.WaitGroup
buildBoxesPool = shuffle(buildBoxesPool)
for _, buildBox := range buildBoxesPool {
if isNodeOffline(buildBox) {
wg.Add(1)
go func(b string) {
defer wg.Done()
enableNode(b)
}(buildBox)
boxesNeeded = boxesNeeded - 1
log.Printf("%d more boxes needed\n", boxesNeeded)
}
if boxesNeeded <= 0 {
wg.Wait()
return
}
}
wg.Wait()
log.Println("No more build boxes available to start")
}
func shuffle(slice []string) []string {
for i := range slice {
randomInt := rand.Intn(i + 1)
first := slice[i]
second := slice[randomInt]
slice[randomInt] = first
slice[i] = second
}
return slice
}
func enableNode(buildBox string) bool {
log.Printf("%s is offline, trying to toggle it online\n", buildBox)
if !isNodeTemporarilyOffline(buildBox) {
toggleNodeStatus(buildBox, "offline")
}
startCloudBox(buildBox)
agentLaunched := true
if !isAgentConnected(buildBox) {
agentLaunched = connectNodeAgent(buildBox)
}
if agentLaunched && isNodeTemporarilyOffline(buildBox) {
toggleNodeStatus(buildBox, "online")
}
return agentLaunched
}
func startCloudBox(buildBox string) {
if isCloudBoxRunning(buildBox) {
return
}
_, err := service.Instances.Start(*gceProjectName, *gceZone, buildBox).Do()
if err != nil {
log.Println(err)
return
}
waitForStatus(buildBox, "RUNNING")
lastStarted.Lock()
lastStarted.m[buildBox] = time.Now()
lastStarted.Unlock()
}
func calculateNumberOfNodesToEnable(queueSize int) int {
mod := 0
if queueSize%(*workersPerBuildBox) != 0 {
mod = 1
}
return (queueSize / *workersPerBuildBox) + mod
}
func disableUnnecessaryBuildBoxes() {
var buildBoxToKeepOnline string
other := "box"
if isWorkingHour() {
buildBoxToKeepOnline = keepOneBoxOnline()
other = "other box apart from " + buildBoxToKeepOnline
}
log.Printf("Checking if any %s is enabled and idle", other)
var wg sync.WaitGroup
for _, buildBox := range buildBoxesPool {
if buildBoxToKeepOnline != buildBox {
wg.Add(1)
go func(b string) {
defer wg.Done()
disableNode(b)
}(buildBox)
}
}
wg.Wait()
}
func keepOneBoxOnline() string {
preferredBoxPresent := false
for _, buildBox := range buildBoxesPool {
if buildBox == *preferredNodeToKeepOnline {
preferredBoxPresent = true
break
}
}
var buildBoxToKeepOnline string
if preferredBoxPresent && isCloudBoxRunning(*preferredNodeToKeepOnline) && !isNodeOffline(*preferredNodeToKeepOnline) && !isNodeTemporarilyOffline(*preferredNodeToKeepOnline) {
buildBoxToKeepOnline = *preferredNodeToKeepOnline
} else if preferredBoxPresent {
if enableNode(*preferredNodeToKeepOnline) {
buildBoxToKeepOnline = *preferredNodeToKeepOnline
}
}
if buildBoxToKeepOnline == "" {
online := make(chan string, len(buildBoxesPool))
for _, buildBox := range buildBoxesPool {
go func(b string, channel chan<- string) {
if isCloudBoxRunning(b) && !isNodeOffline(b) && !isNodeTemporarilyOffline(b) {
channel <- b
return
}
channel <- ""
}(buildBox, online)
}
for range buildBoxesPool {
b := <-online
if b != "" {
buildBoxToKeepOnline = b
log.Printf("Will keep %s online", b)
break
}
}
}
if buildBoxToKeepOnline == "" {
buildBoxToKeepOnline = shuffle(buildBoxesPool)[0]
log.Printf("Will start %s and keep online", buildBoxToKeepOnline)
enableNode(buildBoxToKeepOnline)
}
return buildBoxToKeepOnline
}
func isWorkingHour() bool {
location, err := time.LoadLocation(*locationName)
if err != nil {
fmt.Printf("Could not load %s location\n", *locationName)
return true
}
t := time.Now().In(location)
if t.Hour() < 7 || t.Hour() > 19 {
log.Println("Nobody should be working at this time of the day...")
return false
}
if t.Weekday() == 0 || t.Weekday() == 6 {
log.Println("Nobody should be working on weekends...")
return false
}
return true
}
func disableNode(buildBox string) {
if !isNodeIdle(buildBox) {
return
}
lastStarted.RLock()
started := lastStarted.m[buildBox]
lastStarted.RUnlock()
if !started.IsZero() && started.Add(time.Minute*10).After(time.Now()) {
log.Printf("%s is idle but has been up for less than 10 minutes", buildBox)
return
}
if !isNodeTemporarilyOffline(buildBox) {
log.Printf("%s is not offline, trying to toggle it offline\n", buildBox)
toggleNodeStatus(buildBox, "offline")
time.Sleep(2 * time.Second)
if !isNodeIdle(buildBox) {
log.Printf("%s accepted a new job in the meantime, aborting termination\n", buildBox)
toggleNodeStatus(buildBox, "online")
return
}
}
ensureCloudBoxIsNotRunning(buildBox)
}
func toggleNodeStatus(buildBox string, message string) error {
resp, err := jenkinsRequest("POST", "/computer/"+buildBox+"/toggleOffline")
defer closeResponseBody(resp)
if err == nil {
log.Printf("%s was toggled temporarily %s\n", buildBox, message)
}
return err
}
func connectNodeAgent(buildBox string) bool {
log.Printf("Agent was launched for %s, waiting for it to come online\n", buildBox)
quit := make(chan bool, 1)
online := make(chan bool, 1)
go func() {
counter := 0
for {
select {
case <-quit:
return
default:
if isAgentConnected(buildBox) {
time.Sleep(10 * time.Second)
if stillConnected := isAgentConnected(buildBox); !stillConnected {
log.Printf("Agent appeared to be connected for %s, but it disconnected shortly after\n", buildBox)
} else {
online <- true
return
}
}
if counter%10 == 0 {
launchNodeAgent(buildBox)
}
}
time.Sleep(time.Second)
counter += 1
}
}()
agentConnected := true
select {
case <-online:
case <-time.After(time.Second * 120):
quit <- true
agentConnected = false
log.Printf("Unable to launch the agent for %s successfully, shutting down", buildBox)
stopCloudBox(buildBox)
}
return agentConnected
}
func launchNodeAgent(buildBox string) {
resp, _ := jenkinsRequest("POST", "/computer/"+buildBox+"/launchSlaveAgent")
defer closeResponseBody(resp)
}
func stopCloudBox(buildBox string) error {
_, err := service.Instances.Stop(*gceProjectName, *gceZone, buildBox).Do()
if err != nil {
log.Println(err)
return err
}
waitForStatus(buildBox, "TERMINATED")
lastStarted.Lock()
lastStarted.m[buildBox] = time.Time{}
lastStarted.Unlock()
return nil
}
func isAgentConnected(buildBox string) bool {
resp, err := jenkinsRequest("GET", "/computer/"+buildBox+"/logText/progressiveHtml")
defer closeResponseBody(resp)
if err != nil {
return false
}
content, _ := ioutil.ReadAll(resp.Body)
s := string(content)
if len(s) > 37 && strings.Contains(string(s[len(s)-37:]), "successfully connected and online") {
return true
}
return false
}
func isNodeOffline(buildBox string) bool {
data := fetchNodeInfo(buildBox)
return data.Offline
}
func isNodeTemporarilyOffline(buildBox string) bool {
data := fetchNodeInfo(buildBox)
return data.TemporarilyOffline
}
func isNodeIdle(buildBox string) bool {
data := fetchNodeInfo(buildBox)
return data.Idle
}
func fetchNodeInfo(buildBox string) JenkinsBuildBoxInfo {
resp, err := jenkinsRequest("GET", "/computer/"+buildBox+"/api/json")
defer closeResponseBody(resp)
if err != nil {
log.Printf("Error deserialising Jenkins build box %s info API call: %s\n", buildBox, err.Error())
return JenkinsBuildBoxInfo{}
}
decoder := json.NewDecoder(resp.Body)
var data JenkinsBuildBoxInfo
err = decoder.Decode(&data)
return data
}
func adjustQueueSizeDependingWhetherJobRequiringAllNodesIsRunning(queueSize int) int {
if *jobNameRequiringAllNodes == "" {
return queueSize
}
resp, err := jenkinsRequest("GET", "/job/"+*jobNameRequiringAllNodes+"/api/json")
defer closeResponseBody(resp)
if err != nil {
return queueSize
}
decoder := json.NewDecoder(resp.Body)
var data JenkinsJob
err = decoder.Decode(&data)
if data.NextBuildNumber != lastSeenBuildNumber && strings.HasSuffix(data.Color, "_anime") {
lastSeenBuildNumber = data.NextBuildNumber
log.Printf("Detected %s job, enable the whole pool\n", *jobNameRequiringAllNodes)
return *workersPerBuildBox * len(buildBoxesPool)
}
return queueSize
}
func fetchQueueSize() int {
resp, err := jenkinsRequest("GET", "/queue/api/json")
defer closeResponseBody(resp)
if err != nil {
log.Printf("Error deserialising Jenkins queue API call: %s\n", err.Error())
return 0
}
decoder := json.NewDecoder(resp.Body)
var data JenkinsQueue
err = decoder.Decode(&data)
if err != nil {
log.Printf("Error deserialising Jenkins queue API call: %s\n", err.Error())
return 0
}
counter := 0
for _, i := range data.Items {
if i.Buildable && !strings.HasPrefix(i.Why, "There are no nodes with the label") {
counter = counter + 1
}
}
return counter
}
func jenkinsRequest(method string, path string) (*http.Response, error) {
req, err := http.NewRequest(method, strings.TrimRight(*jenkinsBaseUrl, "/")+path, nil)
req.SetBasicAuth(*jenkinsUsername, *jenkinsApiToken)
if method == "POST" {
crumb := jenkinsRequestCrumb()
if crumb != "0" {
req.Header.Add(strings.Split(crumb,":")[0],strings.Split(crumb,":")[1])
}
}
resp, err := httpClient.Do(req)
if err != nil {
log.Printf("Error calling Jenkins API: %s\n", err.Error())
return resp, err
}
if resp.StatusCode == 401 {
panic("Failing authenticating to Jenkins, check user and api token provided")
}
return resp, nil
}
func closeResponseBody(response *http.Response) {
if response != nil && response.Body != nil {
if _, err := ioutil.ReadAll(response.Body); err != nil {
log.Println(err)
}
response.Body.Close()
}
}
func jenkinsRequestCrumb() string {
req, err := http.NewRequest("GET", strings.TrimRight(*jenkinsBaseUrl, "/")+"/crumbIssuer/api/xml?xpath=concat(//crumbRequestField,\":\",//crumb)", nil)
req.SetBasicAuth(*jenkinsUsername, *jenkinsApiToken)
resp, err := httpClient.Do(req)
defer closeResponseBody(resp)
if err != nil {
log.Printf("Error calling Jenkins Crumb API: %s\n", err.Error())
return "0"
}
if resp.StatusCode == 404 {
return "0"
}
if resp.StatusCode == 401 {
panic("Failing authenticating to Jenkins, check user and api token provided")
}
crumb, err := ioutil.ReadAll(resp.Body)
return string(crumb[:])
}
func ensureCloudBoxIsNotRunning(buildBox string) {
if isCloudBoxRunning(buildBox) {
log.Printf("%s is running... Stopping\n", buildBox)
stopCloudBox(buildBox)
}
}
func isCloudBoxRunning(buildBox string) bool {
i, err := service.Instances.Get(*gceProjectName, *gceZone, buildBox).Do()
if nil != err {
log.Printf("Failed to get instance data: %v\n", err)
return false
}
return i.Status == "RUNNING"
}
func enableAllBuildBoxes() {
log.Println("Spinning up all build boxes specified")
var wg sync.WaitGroup
for _, buildBox := range buildBoxesPool {
if isNodeOffline(buildBox) {
wg.Add(1)
go func(b string) {
defer wg.Done()
enableNode(b)
}(buildBox)
}
}
wg.Wait()
}
func disableAllBuildBoxes() {
log.Println("Terminating all build boxes specified")
var wg sync.WaitGroup
for _, buildBox := range buildBoxesPool {
wg.Add(1)
go func(b string) {
defer wg.Done()
if !isNodeTemporarilyOffline(b) {
toggleNodeStatus(b, "offline")
}
ensureCloudBoxIsNotRunning(b)
}(buildBox)
}
wg.Wait()
}
func waitForStatus(buildBox string, status string) {
completed := make(chan bool, 1)
quit := make(chan bool)
go func() {
previousStatus := ""
for {
select {
case <- quit:
return
default:
}
i, err := service.Instances.Get(*gceProjectName, *gceZone, buildBox).Do()
if nil != err {
log.Printf("Failed to get instance data for %s: %v\n", buildBox, err)
continue
}
if previousStatus != i.Status {
log.Printf(" %s -> %s\n", buildBox, i.Status)
previousStatus = i.Status
}
if i.Status == status {
log.Printf(" %s reached %s status\n", buildBox, status)
break
}
time.Sleep(time.Second * 3)
}
completed <- true
}()
select {
case <-completed:
case <-time.After(1 * time.Minute):
quit <- true
log.Printf(" %s did not reach %s status within a reasonable time\n", buildBox, status)
}
}
func getServiceWithCredsFile() (*compute.Service, error) {
optionAPIKey := option.WithServiceAccountFile("creds.json")
if optionAPIKey == nil {
log.Println("Error creating option.WithAPIKey")
return nil, errors.New("Error creating option.WithAPIKey")
}
optScope := []option.ClientOption{
option.WithScopes(compute.ComputeScope),
}
optionSlice := append(optScope, optionAPIKey)
ctx := context.TODO()
httpClient, _, err := transport.NewHTTPClient(ctx, optionSlice...)
if err != nil {
log.Printf("Error NewHTTPClient: %s\n", err.Error())
return nil, err
}
service, err := compute.New(httpClient)
if err != nil {
log.Printf("Error compute.New(): %s\n", err.Error())
return nil, err
}
return service, nil
}
func getServiceWithDefaultCreds() (*compute.Service, error) {
ctx := context.TODO()
client, err := google.DefaultClient(ctx, compute.ComputeScope)
if err != nil {
return nil, err
}
computeService, err := compute.New(client)
return computeService, err
}