forked from giantswarm/grumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
90 lines (74 loc) · 2.29 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
package main
import (
"context"
"crypto/tls"
"flag"
"fmt"
"net/http"
"os"
"os/signal"
"syscall"
"github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/client_golang/prometheus/promauto"
)
const (
port = "8080"
mport = "8081"
)
var (
tlscert, tlskey string
opsProcessed = promauto.NewCounter(prometheus.CounterOpts{
Name: "cosign_processed_ops_total",
Help: "The total number of processed events",
})
verifiedProcessed = promauto.NewCounter(prometheus.CounterOpts{
Name: "cosign_processed_verified_total",
Help: "The number of verfified events",
})
)
func main() {
flag.StringVar(&tlscert, "tlsCertFile", "/etc/certs/tls.crt", "File containing the x509 Certificate for HTTPS.")
flag.StringVar(&tlskey, "tlsKeyFile", "/etc/certs/tls.key", "File containing the x509 private key to --tlsCertFile.")
flag.Parse()
certs, err := tls.LoadX509KeyPair(tlscert, tlskey)
if err != nil {
glog.Errorf("Filed to load key pair: %v", err)
}
server := &http.Server{
Addr: fmt.Sprintf(":%v", port),
TLSConfig: &tls.Config{Certificates: []tls.Certificate{certs}},
}
mserver := &http.Server{
Addr: fmt.Sprintf(":%v", mport),
}
// define http server and server handler
cs := CosignServerHandler{}
mux := http.NewServeMux()
mux.HandleFunc("/validate", cs.serve)
server.Handler = mux
mmux := http.NewServeMux()
mmux.HandleFunc("/healthz", cs.healthz)
mmux.Handle("/metrics", promhttp.Handler())
mserver.Handler = mmux
// start webhook server in new rountine
go func() {
if err := server.ListenAndServeTLS("", ""); err != nil {
glog.Errorf("Failed to listen and serve webhook server: %v", err)
}
}()
go func() {
if err := mserver.ListenAndServe(); err != nil {
glog.Errorf("Failed to listen and serve minitor server: %v", err)
}
}()
glog.Infof("Server running listening in port: %s,%s", port, mport)
// listening shutdown singal
signalChan := make(chan os.Signal, 1)
signal.Notify(signalChan, syscall.SIGINT, syscall.SIGTERM)
<-signalChan
glog.Info("Got shutdown signal, shutting down webhook server gracefully...")
server.Shutdown(context.Background())
mserver.Shutdown(context.Background())
}