-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathps.go
More file actions
153 lines (122 loc) · 3.26 KB
/
ps.go
File metadata and controls
153 lines (122 loc) · 3.26 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
package cmd
import (
"fmt"
"regexp"
"strconv"
"strings"
"time"
"github.com/deis/controller-sdk-go"
"github.com/deis/controller-sdk-go/api"
"github.com/deis/controller-sdk-go/ps"
)
// PsList lists an app's processes.
func PsList(appID string, results int) error {
s, appID, err := load(appID)
if err != nil {
return err
}
if results == defaultLimit {
results = s.Limit
}
processes, _, err := ps.List(s.Client, appID, results)
if checkAPICompatibility(s.Client, err) != nil {
return err
}
printProcesses(appID, processes)
return nil
}
// PsScale scales an app's processes.
func PsScale(appID string, targets []string) error {
s, appID, err := load(appID)
if err != nil {
return err
}
targetMap := make(map[string]int)
regex := regexp.MustCompile("^([a-z0-9]+)=([0-9]+)$")
for _, target := range targets {
if regex.MatchString(target) {
captures := regex.FindStringSubmatch(target)
targetMap[captures[1]], err = strconv.Atoi(captures[2])
if err != nil {
return err
}
} else {
return fmt.Errorf("'%s' does not match the pattern 'type=num', ex: web=2\n", target)
}
}
fmt.Printf("Scaling processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress()
err = ps.Scale(s.Client, appID, targetMap)
quit <- true
<-quit
if checkAPICompatibility(s.Client, err) != nil {
return err
}
fmt.Printf("done in %ds\n", int(time.Since(startTime).Seconds()))
processes, _, err := ps.List(s.Client, appID, s.Limit)
if err != nil {
return err
}
printProcesses(appID, processes)
return nil
}
// PsRestart restarts an app's processes.
func PsRestart(appID, target string) error {
s, appID, err := load(appID)
if err != nil {
return err
}
psType, psName := "", ""
if target != "" {
psType, psName = parseType(target, appID)
}
fmt.Printf("Restarting processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress()
processes, err := ps.Restart(s.Client, appID, psType, psName)
quit <- true
<-quit
if err == deis.ErrPodNotFound {
return fmt.Errorf("Could not find proccess type %s in app %s", psType, appID)
} else if checkAPICompatibility(s.Client, err) != nil {
return err
}
if len(processes) == 0 {
fmt.Println("Could not find any processes to restart")
} else {
fmt.Printf("done in %ds\n", int(time.Since(startTime).Seconds()))
printProcesses(appID, processes)
}
return nil
}
func printProcesses(appID string, processes []api.Pods) {
psMap := ps.ByType(processes)
fmt.Printf("=== %s Processes\n", appID)
for psType, procs := range psMap {
fmt.Printf("--- %s:\n", psType)
for _, proc := range procs {
fmt.Printf("%s %s (%s)\n", proc.Name, proc.State, proc.Release)
}
}
}
func parseType(target string, appID string) (string, string) {
psType, psName := "", ""
if strings.Contains(target, "-") {
replaced := strings.Replace(target, appID+"-", "", 1)
parts := strings.Split(replaced, "-")
// the API requires the type, for now
// regex matches against how Deployment pod name is constructed
regex := regexp.MustCompile("[0-9]{8,10}-[a-z0-9]{5}$")
if regex.MatchString(replaced) {
psType = parts[0]
} else {
psType = parts[1]
}
// process name is the full pod
psName = target
} else {
psType = target
}
return psType, psName
}