forked from infobloxopen/db-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
172 lines (141 loc) · 5.54 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
/*
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.
*/
package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"os"
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
// to ensure that exec-entrypoint and run can make use of them.
_ "k8s.io/client-go/plugin/pkg/client/auth"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/webhook"
persistancev1 "github.com/infobloxopen/db-controller/api/v1"
"github.com/infobloxopen/db-controller/controllers"
dbproxy "github.com/infobloxopen/db-controller/webhook"
//+kubebuilder:scaffold:imports
"github.com/infobloxopen/db-controller/pkg/config"
"github.com/infobloxopen/db-controller/pkg/rdsauth"
// +kubebuilder:scaffold:imports
crossplanedbv1beta1 "github.com/crossplane/provider-aws/apis/database/v1beta1"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(persistancev1.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
// Infrastructure provisioning using crossplane
utilruntime.Must(crossplanedbv1beta1.SchemeBuilder.AddToScheme(scheme))
}
func parseDBPoxySidecarConfig(configFile string) (*dbproxy.Config, error) {
data, err := ioutil.ReadFile(configFile)
if err != nil {
return nil, err
}
var cfg dbproxy.Config
if err := json.Unmarshal(data, &cfg); err != nil {
return nil, err
}
return &cfg, nil
}
func main() {
var metricsAddr string
var metricsPort int
var enableLeaderElection bool
var configFile string
var probeAddr string
var probePort int
var enableDBProxyWebhook bool
var dbIdentifierPrefix string
flag.StringVar(&metricsAddr, "metrics-addr", "0.0.0.0", "The address the metric endpoint binds to.")
flag.IntVar(&metricsPort, "metrics-port", 8080, "The port the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-address", "", "The address the probe endpoint binds to.")
flag.IntVar(&probePort, "health-probe-port", 8081, "The port the probe endpoint binds to.")
flag.BoolVar(&enableLeaderElection, "enable-leader-election", false,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.StringVar(&configFile, "config-file", "/etc/config/config.yaml",
"Database connection string to with root credentials.")
flag.BoolVar(&enableDBProxyWebhook, "enable-db-proxy", true,
"Enable DB Proxy webhook. "+
"Enabling this option will cause the db-controller to inject db proxy pod into pods "+
"with the infoblox.com/db-secret-path annotation set.")
opts := zap.Options{
Development: false,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
logger := zap.New(zap.UseFlagOptions(&opts))
ctlConfig := config.NewConfig(logger, configFile)
ctrl.SetLogger(logger)
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
MetricsBindAddress: fmt.Sprintf("%s:%d", metricsAddr, metricsPort),
HealthProbeBindAddress: fmt.Sprintf("%s:%d", probeAddr, probePort),
Port: 9443,
LeaderElection: enableLeaderElection,
LeaderElectionID: "32151587.atlas.infoblox.com",
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
if err = (&controllers.DatabaseClaimReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("DatabaseClaim"),
Scheme: mgr.GetScheme(),
Config: ctlConfig,
MasterAuth: rdsauth.NewMasterAuth(),
DbIdentifierPrefix: dbIdentifierPrefix,
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "DatabaseClaim")
os.Exit(1)
}
//+kubebuilder:scaffold:builder
if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up ready check")
os.Exit(1)
}
if enableDBProxyWebhook {
webHookServer := mgr.GetWebhookServer()
webHookServer.Port = 7443
webHookServer.CertDir = "./certs/"
dbProxySidecarConfig, err := parseDBPoxySidecarConfig("./config/dbproxy/dbproxysidecar.json")
if err != nil {
setupLog.Error(err, "could not parse db proxy sidecar configuration")
os.Exit(1)
} else {
setupLog.Info("Parsed db proxy sidecar config:", "dbproxysidecarconfig", dbProxySidecarConfig)
}
setupLog.Info("registering with webhook server")
webHookServer.Register("/mutate", &webhook.Admission{Handler: &dbproxy.DBProxyInjector{Name: "DB Proxy", Client: mgr.GetClient(), DBProxySidecarConfig: dbProxySidecarConfig}})
}
setupLog.Info("starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}