forked from argoproj/rollouts-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
235 lines (212 loc) · 5.83 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
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"log"
"math/rand"
"net/http"
"os"
"os/signal"
"runtime"
"strconv"
"syscall"
"time"
)
const (
// defaultTerminationDelay delays termination of the program in a graceful shutdown situation.
// We do this to prevent the pod from exiting immediately upon a pod termination event
// (e.g. during a rolling update). This gives some time for ingress controllers to react to
// the Pod IP being removed from the Service's Endpoint list, which prevents traffic from being
// directed to terminated pods, which otherwise would cause timeout errors and/or request delays.
// See: https://github.com/kubernetes/ingress-nginx/issues/3335#issuecomment-434970950
defaultTerminationDelay = 10
)
var (
color = os.Getenv("COLOR")
colors = []string{
"red",
"orange",
"yellow",
"green",
"blue",
"purple",
}
envLatency float64
envErrorRate int
)
func init() {
var err error
envLatencyStr := os.Getenv("LATENCY")
if envLatencyStr != "" {
envLatency, err = strconv.ParseFloat(envLatencyStr, 64)
if err != nil {
panic(fmt.Sprintf("failed to parse LATENCY: %s", envLatencyStr))
}
}
envErrorRateStr := os.Getenv("ERROR_RATE")
if envErrorRateStr != "" {
envErrorRate, err = strconv.Atoi(envErrorRateStr)
if err != nil {
panic(fmt.Sprintf("failed to parse ERROR_RATE: %s", envErrorRateStr))
}
}
}
func main() {
var (
listenAddr string
terminationDelay int
numCPUBurn string
tls bool
)
flag.StringVar(&listenAddr, "listen-addr", ":8080", "server listen address")
flag.IntVar(&terminationDelay, "termination-delay", defaultTerminationDelay, "termination delay in seconds")
flag.StringVar(&numCPUBurn, "cpu-burn", "", "burn specified number of cpus (number or 'all')")
flag.BoolVar(&tls, "tls", false, "Enable TLS (with self-signed certificate)")
flag.Parse()
rand.Seed(time.Now().UnixNano())
router := http.NewServeMux()
router.Handle("/", http.StripPrefix("/", http.FileServer(http.Dir("./"))))
router.HandleFunc("/color", getColor)
server := &http.Server{
Addr: listenAddr,
Handler: router,
}
if tls {
tlsConfig, err := CreateServerTLSConfig("", "", []string{"localhost", "rollouts-demo"})
if err != nil {
log.Fatalf("Could not generate TLS config: %v\n", err)
}
server.TLSConfig = tlsConfig
}
done := make(chan bool)
quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
go func() {
sig := <-quit
server.SetKeepAlivesEnabled(false)
log.Printf("Signal %v caught. Shutting down in %vs", sig, terminationDelay)
delay := time.NewTicker(time.Duration(terminationDelay) * time.Second)
defer delay.Stop()
select {
case <-quit:
log.Println("Second signal caught. Shutting down NOW")
case <-delay.C:
}
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
if err := server.Shutdown(ctx); err != nil {
log.Fatalf("Could not gracefully shutdown the server: %v\n", err)
}
close(done)
}()
cpuBurn(done, numCPUBurn)
log.Printf("Started server on %s", listenAddr)
var err error
if tls {
err = server.ListenAndServeTLS("", "")
} else {
err = server.ListenAndServe()
}
if err != nil && err != http.ErrServerClosed {
log.Fatalf("Could not listen on %s: %v\n", listenAddr, err)
}
<-done
log.Println("Server stopped")
}
type colorParameters struct {
Color string `json:"color"`
DelayLength float64 `json:"delayLength,omitempty"`
Return500Probability *int `json:"return500,omitempty"`
}
func getColor(w http.ResponseWriter, r *http.Request) {
requestBody, err := ioutil.ReadAll(r.Body)
if err != nil {
w.WriteHeader(500)
log.Println(err.Error())
fmt.Fprintf(w, err.Error())
return
}
var request []colorParameters
if len(requestBody) > 0 && string(requestBody) != `"[]"` {
err = json.Unmarshal(requestBody, &request)
if err != nil {
w.WriteHeader(500)
log.Printf("%s: %v", string(requestBody), err.Error())
fmt.Fprintf(w, err.Error())
return
}
}
colorToReturn := randomColor()
if color != "" {
colorToReturn = color
}
var colorParams colorParameters
for i := range request {
cp := request[i]
if cp.Color == colorToReturn {
colorParams = cp
}
}
var delayLength float64
var delayLengthStr string
if colorParams.DelayLength > 0 {
delayLength = colorParams.DelayLength
} else if envLatency > 0 {
delayLength = envLatency
}
if delayLength > 0 {
delayLengthStr = fmt.Sprintf(" (%fs)", delayLength)
time.Sleep(time.Duration(delayLength) * time.Second)
}
statusCode := http.StatusOK
if colorParams.Return500Probability != nil && *colorParams.Return500Probability > 0 && *colorParams.Return500Probability >= rand.Intn(100) {
statusCode = http.StatusInternalServerError
} else if envErrorRate > 0 && rand.Intn(100) >= envErrorRate {
statusCode = http.StatusInternalServerError
}
printColor(colorToReturn, w, statusCode)
log.Printf("%d - %s%s\n", statusCode, colorToReturn, delayLengthStr)
}
func printColor(colorToPrint string, w http.ResponseWriter, statusCode int) {
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
w.Header().Set("X-Content-Type-Options", "nosniff")
w.WriteHeader(statusCode)
fmt.Fprintf(w, "\"%s\"", colorToPrint)
}
func randomColor() string {
return colors[rand.Int()%len(colors)]
}
func cpuBurn(done <-chan bool, numCPUBurn string) {
if numCPUBurn == "" {
return
}
var numCPU int
if numCPUBurn == "all" {
numCPU = runtime.NumCPU()
} else {
num, err := strconv.Atoi(numCPUBurn)
if err != nil {
log.Fatal(err)
}
numCPU = num
}
log.Printf("Burning %d CPUs", numCPU)
noop := func() {}
for i := 0; i < numCPU; i++ {
go func(cpu int) {
log.Printf("Burning CPU #%d", cpu)
for {
select {
case <-done:
log.Printf("Stopped CPU burn #%d", cpu)
return
default:
noop()
}
}
}(i)
}
}