-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathps.go
More file actions
162 lines (131 loc) · 3.62 KB
/
ps.go
File metadata and controls
162 lines (131 loc) · 3.62 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
package cmd
import (
"fmt"
"io"
"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 (d DeisCmd) PsList(appID string, results int) error {
s, appID, err := load(d.ConfigFile, 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, d.WErr) != nil {
return err
}
printProcesses(appID, processes, d.WOut)
return nil
}
// PsScale scales an app's processes.
func (d DeisCmd) PsScale(appID string, targets []string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
targetMap, err := parsePsTargets(targets)
if err != nil {
return err
}
d.Printf("Scaling processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress(d.WOut)
err = ps.Scale(s.Client, appID, targetMap)
quit <- true
<-quit
if checkAPICompatibility(s.Client, err, d.WErr) != nil {
return err
}
d.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, d.WOut)
return nil
}
// PsRestart restarts an app's processes.
func (d DeisCmd) PsRestart(appID, target string) error {
s, appID, err := load(d.ConfigFile, appID)
if err != nil {
return err
}
psType, psName := "", ""
if target != "" {
psType, psName = parseType(target, appID)
}
d.Printf("Restarting processes... but first, %s!\n", drinkOfChoice())
startTime := time.Now()
quit := progress(d.WOut)
processes, err := ps.Restart(s.Client, appID, psType, psName)
quit <- true
<-quit
if err == deis.ErrPodNotFound {
return fmt.Errorf("Could not find process type %s in app %s", psType, appID)
} else if checkAPICompatibility(s.Client, err, d.WErr) != nil {
return err
}
if len(processes) == 0 {
d.Println("Could not find any processes to restart")
} else {
d.Printf("done in %ds\n", int(time.Since(startTime).Seconds()))
printProcesses(appID, processes, d.WOut)
}
return nil
}
func printProcesses(appID string, input []api.Pods, wOut io.Writer) {
processes := ps.ByType(input)
fmt.Fprintf(wOut, "=== %s Processes\n", appID)
for _, process := range processes {
fmt.Fprintf(wOut, "--- %s:\n", process.Type)
for _, pod := range process.PodsList {
fmt.Fprintf(wOut, "%s %s (%s)\n", pod.Name, pod.State, pod.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
}
func parsePsTargets(targets []string) (map[string]int, error) {
targetMap := make(map[string]int)
regex := regexp.MustCompile("^([a-z0-9]+)=([0-9]+)$")
var err error
for _, target := range targets {
if regex.MatchString(target) {
captures := regex.FindStringSubmatch(target)
targetMap[captures[1]], err = strconv.Atoi(captures[2])
if err != nil {
return nil, err
}
} else {
return nil, fmt.Errorf("'%s' does not match the pattern 'type=num', ex: web=2\n", target)
}
}
return targetMap, nil
}