-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
165 lines (144 loc) · 4.86 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
package main
import (
"context"
"flag"
"fmt"
"os"
"os/signal"
"path"
"strconv"
"syscall"
"github.com/golang/glog"
prom "github.com/prometheus/client_golang/prometheus"
"github.com/shawn-hurley/osb-broker-k8s-lib/middleware"
clientset "k8s.io/client-go/kubernetes"
clientrest "k8s.io/client-go/rest"
"k8s.io/client-go/tools/clientcmd"
"github.com/pmorie/osb-broker-lib/pkg/metrics"
"github.com/pmorie/osb-broker-lib/pkg/rest"
"github.com/pmorie/osb-broker-lib/pkg/server"
"github.com/pmorie/osb-starter-pack/pkg/broker"
)
var options struct {
broker.Options
Port int
Insecure bool
TLSCert string
TLSKey string
TLSCertFile string
TLSKeyFile string
AuthenticateK8SToken bool
KubeConfig string
}
func init() {
flag.IntVar(&options.Port, "port", 8443, "use '--port' option to specify the port for broker to listen on")
flag.BoolVar(&options.Insecure, "insecure", false, "use --insecure to use HTTP vs HTTPS.")
flag.StringVar(&options.TLSCertFile, "tls-cert-file", "", "File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert).")
flag.StringVar(&options.TLSKeyFile, "tls-private-key-file", "", "File containing the default x509 private key matching --tls-cert-file.")
flag.StringVar(&options.TLSCert, "tlsCert", "", "base-64 encoded PEM block to use as the certificate for TLS. If '--tlsCert' is used, then '--tlsKey' must also be used.")
flag.StringVar(&options.TLSKey, "tlsKey", "", "base-64 encoded PEM block to use as the private key matching the TLS certificate.")
flag.BoolVar(&options.AuthenticateK8SToken, "authenticate-k8s-token", false, "option to specify if the broker should validate the bearer auth token with kubernetes")
flag.StringVar(&options.KubeConfig, "kube-config", "", "specify the kube config path to be used")
broker.AddFlags(&options.Options)
flag.Parse()
}
func main() {
if err := run(); err != nil && err != context.Canceled && err != context.DeadlineExceeded {
glog.Fatalln(err)
}
}
func run() error {
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
go cancelOnInterrupt(ctx, cancelFunc)
return runWithContext(ctx)
}
func runWithContext(ctx context.Context) error {
if flag.Arg(0) == "version" {
fmt.Printf("%s/%s\n", path.Base(os.Args[0]), "0.1.0")
return nil
}
if (options.TLSCert != "" || options.TLSKey != "") &&
(options.TLSCert == "" || options.TLSKey == "") {
fmt.Println("To use TLS with specified cert or key data, both --tlsCert and --tlsKey must be used")
return nil
}
addr := ":" + strconv.Itoa(options.Port)
businessLogic, err := broker.NewBusinessLogic(options.Options)
if err != nil {
return err
}
// Prom. metrics
reg := prom.NewRegistry()
osbMetrics := metrics.New()
reg.MustRegister(osbMetrics)
api, err := rest.NewAPISurface(businessLogic, osbMetrics)
if err != nil {
return err
}
s := server.New(api, reg)
if options.AuthenticateK8SToken {
// get k8s client
k8sClient, err := getKubernetesClient(options.KubeConfig)
if err != nil {
return err
}
// create TokenReviewMiddleware
tr := middleware.TokenReviewMiddleware{
TokenReview: k8sClient.Authentication().TokenReviews(),
}
// Use TokenReviewMiddleware.
s.Router.Use(tr.Middleware)
}
glog.Infof("Starting broker!")
if options.Insecure {
err = s.Run(ctx, addr)
} else {
if options.TLSCert != "" && options.TLSKey != "" {
glog.V(4).Infof("Starting secure broker with TLS cert and key data")
err = s.RunTLS(ctx, addr, options.TLSCert, options.TLSKey)
} else {
if options.TLSCertFile == "" || options.TLSKeyFile == "" {
glog.Error("unable to run securely without TLS Certificate and Key. Please review options and if running with TLS, specify --tls-cert-file and --tls-private-key-file or --tlsCert and --tlsKey.")
return nil
}
glog.V(4).Infof("Starting secure broker with file based TLS cert and key")
err = s.RunTLSWithTLSFiles(ctx, addr, options.TLSCertFile, options.TLSKeyFile)
}
}
return err
}
func getKubernetesClient(kubeConfigPath string) (clientset.Interface, error) {
var clientConfig *clientrest.Config
var err error
if kubeConfigPath == "" {
clientConfig, err = clientrest.InClusterConfig()
if err != nil {
return nil, err
}
} else {
config, err := clientcmd.LoadFromFile(kubeConfigPath)
if err != nil {
return nil, err
}
clientConfig, err = clientcmd.NewDefaultClientConfig(*config, &clientcmd.ConfigOverrides{}).ClientConfig()
if err != nil {
return nil, err
}
}
return clientset.NewForConfig(clientConfig)
}
func cancelOnInterrupt(ctx context.Context, f context.CancelFunc) {
term := make(chan os.Signal)
signal.Notify(term, os.Interrupt, syscall.SIGTERM)
for {
select {
case <-term:
glog.Infof("Received SIGTERM, exiting gracefully...")
f()
os.Exit(0)
case <-ctx.Done():
os.Exit(0)
}
}
}