forked from CrunchyData/pgo-osb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgo-osb.go
229 lines (195 loc) · 6.64 KB
/
pgo-osb.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
package main
/*
Copyright 2018 Crunchy Data Solutions, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import (
"context"
"flag"
"log"
"os"
"os/signal"
"path"
"strconv"
"syscall"
"github.com/crunchydata/pgo-osb/pgocmd"
"github.com/crunchydata/pgo-osb/pkg/broker"
"github.com/crunchydata/postgres-operator/config"
"github.com/crunchydata/postgres-operator/util"
"github.com/pmorie/osb-broker-lib/pkg/metrics"
"github.com/pmorie/osb-broker-lib/pkg/rest"
"github.com/pmorie/osb-broker-lib/pkg/server"
prom "github.com/prometheus/client_golang/prometheus"
uuid "github.com/satori/go.uuid"
"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"
)
var options struct {
broker.Options
Port int
Insecure bool
PGO_APISERVER_URL string
PGO_APISERVER_VERSION string
TLSCert string
TLSKey string
TLSCertFile string
TLSKeyFile string
AuthenticateK8SToken bool
KubeConfig string
}
func main() {
//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()
log.SetOutput(os.Stdout)
log.Println(config.LABEL_PG_CLUSTER)
if options.PGO_OSB_GUID == "" {
u := uuid.NewV4()
options.PGO_OSB_GUID = u.String()
log.Print("generating GUID for this broker since none was supplied in the PGO_OSB_GUID env var: GUID is " + options.PGO_OSB_GUID)
}
if err := run(); err != nil && err != context.Canceled && err != context.DeadlineExceeded {
log.Print(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" {
log.Printf("%s/%s\n", path.Base(os.Args[0]), "0.1.0")
return nil
}
if (options.TLSCert != "" || options.TLSKey != "") &&
(options.TLSCert == "" || options.TLSKey == "") {
log.Print("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 a User Info Authorizer.
authz := middleware.SARUserInfoAuthorizer{
SAR: k8sClient.AuthorizationV1().SubjectAccessReviews(),
}
// create TokenReviewMiddleware
tr := middleware.TokenReviewMiddleware{
TokenReview: k8sClient.Authentication().TokenReviews(),
Authorizer: authz,
}
// Use TokenReviewMiddleware.
s.Router.Use(tr.Middleware)
}
RESTClient, err := getRestClient(options.KubeConfig)
if err != nil {
return err
}
pgocmd.RESTClient = RESTClient
log.Print("Starting broker!")
if options.Insecure {
err = s.Run(ctx, addr)
} else {
if options.TLSCert != "" && options.TLSKey != "" {
log.Print("Starting secure broker with TLS cert and key data")
err = s.RunTLS(ctx, addr, options.TLSCert, options.TLSKey)
} else {
if options.TLSCertFile == "" || options.TLSKeyFile == "" {
log.Print("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
}
log.Print("Starting secure broker with file based TLS cert and key")
err = s.RunTLSWithTLSFiles(ctx, addr, options.TLSCertFile, options.TLSKeyFile)
}
}
return err
}
func getKubernetesConfig(kubeConfigPath string) (*clientrest.Config, 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 clientConfig, nil
}
func getKubernetesClient(kubeConfigPath string) (clientset.Interface, error) {
kubeConfig, err := getKubernetesConfig(kubeConfigPath)
if err != nil {
return nil, err
}
return clientset.NewForConfig(kubeConfig)
}
func getRestClient(kubeConfigPath string) (*clientrest.RESTClient, error) {
kubeConfig, err := getKubernetesConfig(kubeConfigPath)
if err != nil {
return nil, err
}
restClient, _, err := util.NewClient(kubeConfig)
if err != nil {
return nil, err
}
return restClient, nil
}
func cancelOnInterrupt(ctx context.Context, f context.CancelFunc) {
term := make(chan os.Signal)
signal.Notify(term, os.Interrupt, syscall.SIGTERM)
for {
select {
case <-term:
log.Print("Received SIGTERM, exiting gracefully...")
f()
os.Exit(0)
case <-ctx.Done():
os.Exit(0)
}
}
}