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
|
package main
import (
"log"
"net/http"
"os"
"time"
"github.com/facebookgo/httpdown"
)
var ReadyValue = http.StatusOK
var LiveValue = http.StatusOK
var hostname string
func readinessCheck(w http.ResponseWriter, r *http.Request) {
w.Header().Set("responding-pod", hostname)
http.Error(w, "", ReadyValue)
}
func livenessCheck(w http.ResponseWriter, r *http.Request) {
w.Header().Set("responding-pod", hostname)
http.Error(w, "", LiveValue)
}
func rootHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("responding-pod", hostname)
w.Fprintf(w, "%s", "I'm serving traffic!")
}
func main() {
// Force log output to stdout for Docker
log.SetOutput(os.Stdout)
// Delay for startup
time.Sleep(1 * time.Second)
hostname, _ = os.Hostname()
log.Println("Service started on port 80")
mux := http.NewServeMux()
mux.HandleFunc("/", rootHandler)
mux.HandleFunc("/ping", livenessCheck)
mux.HandleFunc("/ready", readinessCheck)
mux.HandleFunc("/makeNotReady", makeNotReady)
mux.HandleFunc("/makePodReady", makePodReady)
server := &http.Server{
Addr: ":80",
Handler: mux,
}
hd := &httpdown.HTTP{
StopTimeout: 10 * time.Second,
KillTimeout: 1 * time.Second,
}
if err := httpdown.ListenAndServe(server, hd); err != nil {
log.Fatalln(err)
}
}
|