forked from DataDog/chaos-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
184 lines (157 loc) · 7.25 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
173
174
175
176
177
178
179
180
181
182
183
184
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2021 Datadog, 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.
*/
package main
import (
"os"
"time"
"github.com/spf13/pflag"
"k8s.io/apimachinery/pkg/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/webhook"
chaosv1beta1 "github.com/DataDog/chaos-controller/api/v1beta1"
"github.com/DataDog/chaos-controller/controllers"
"github.com/DataDog/chaos-controller/log"
"github.com/DataDog/chaos-controller/metrics"
"github.com/DataDog/chaos-controller/metrics/types"
chaoswebhook "github.com/DataDog/chaos-controller/webhook"
// +kubebuilder:scaffold:imports
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
// +kubebuilder:scaffold:scheme
_ = clientgoscheme.AddToScheme(scheme)
_ = chaosv1beta1.AddToScheme(scheme)
}
func main() {
var (
metricsAddr string
enableLeaderElection bool
deleteOnly bool
sink string
injectorAnnotations map[string]string
injectorServiceAccount string
injectorServiceAccountNamespace string
injectorImage string
handlerEnabled bool
handlerImage string
handlerTimeout time.Duration
imagePullSecrets string
admissionWebhookCertDir string
admissionWebhookHost string
admissionWebhookPort int
)
pflag.StringVar(&metricsAddr, "metrics-addr", ":8080", "The address the metric endpoint binds to.")
pflag.BoolVar(&enableLeaderElection, "enable-leader-election", false, "Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.")
pflag.BoolVar(&deleteOnly, "delete-only", false,
"Enable delete only mode which will not allow new disruption to start and will only continue to clean up and remove existing disruptions.")
pflag.StringToStringVar(&injectorAnnotations, "injector-annotations", map[string]string{}, "Annotations added to the generated injector pods")
pflag.StringVar(&injectorServiceAccount, "injector-service-account", "chaos-injector", "Service account to use for the generated injector pods")
pflag.StringVar(&injectorServiceAccountNamespace, "injector-service-account-namespace", "chaos-engineering", "Namespace of the service account to use for the generated injector pods. Should also host the controller.")
pflag.StringVar(&injectorImage, "injector-image", "chaos-injector", "Image to pull for the injector pods")
pflag.BoolVar(&handlerEnabled, "handler-enabled", false, "Enable the chaos handler for on-init disruptions")
pflag.StringVar(&handlerImage, "handler-image", "chaos-handler", "Image to pull for the handler containers")
pflag.DurationVar(&handlerTimeout, "handler-timeout", time.Minute, "Handler init container timeout")
pflag.StringVar(&imagePullSecrets, "image-pull-secrets", "", "Secrets used for pulling the Docker image from a private registry")
pflag.StringVar(&sink, "metrics-sink", "noop", "Metrics sink (datadog, or noop)")
pflag.StringVar(&admissionWebhookCertDir, "admission-webhook-cert-dir", "", "Admission webhook certificate directory to search for tls.crt and tls.key files")
pflag.StringVar(&admissionWebhookHost, "admission-webhook-host", "", "Host used by the admission controller to serve requests")
pflag.IntVar(&admissionWebhookPort, "admission-webhook-port", 9443, "Port used by the admission controller to serve requests")
pflag.Parse()
logger, err := log.NewZapLogger()
if err != nil {
setupLog.Error(err, "error creating controller logger")
os.Exit(1)
}
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
Scheme: scheme,
MetricsBindAddress: metricsAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "75ec2fa4.datadoghq.com",
Host: admissionWebhookHost,
Port: admissionWebhookPort,
CertDir: admissionWebhookCertDir,
})
if err != nil {
logger.Errorw("unable to start manager", "error", err)
os.Exit(1)
}
// metrics sink
ms, err := metrics.GetSink(types.SinkDriver(sink), types.SinkAppController)
if err != nil {
logger.Errorw("error while creating metric sink", "error", err)
}
if ms.MetricRestart() != nil {
logger.Errorw("error sending MetricRestart", "sink", ms.GetSinkName())
}
// handle metrics sink client close on exit
defer func() {
logger.Infow("closing metrics sink client before exiting", "sink", ms.GetSinkName())
if err := ms.Close(); err != nil {
logger.Errorw("error closing metrics sink client", "sink", ms.GetSinkName(), "error", err)
}
}()
// create reconciler
r := &controllers.DisruptionReconciler{
Client: mgr.GetClient(),
BaseLog: logger,
Scheme: mgr.GetScheme(),
Recorder: mgr.GetEventRecorderFor("disruption-controller"),
MetricsSink: ms,
TargetSelector: controllers.RunningTargetSelector{},
InjectorAnnotations: injectorAnnotations,
InjectorServiceAccount: injectorServiceAccount,
InjectorImage: injectorImage,
InjectorServiceAccountNamespace: injectorServiceAccountNamespace,
ImagePullSecrets: imagePullSecrets,
}
if err := r.SetupWithManager(mgr); err != nil {
logger.Errorw("unable to create controller", "controller", "Disruption", "error", err)
os.Exit(1)
}
go r.ReportMetrics()
// register disruption validating webhook
if err = (&chaosv1beta1.Disruption{}).SetupWebhookWithManager(mgr, logger, ms, deleteOnly, handlerEnabled); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "Disruption")
os.Exit(1)
}
// register chaos handler init container mutating webhook
mgr.GetWebhookServer().Register("/mutate-v1-pod-chaos-handler-init-container", &webhook.Admission{
Handler: &chaoswebhook.ChaosHandlerMutator{
Client: mgr.GetClient(),
Log: logger,
Image: handlerImage,
Timeout: handlerTimeout,
},
})
// register user info mutating webhook
mgr.GetWebhookServer().Register("/mutate-chaos-datadoghq-com-v1beta1-disruption-user-info", &webhook.Admission{
Handler: &chaoswebhook.UserInfoMutator{
Client: mgr.GetClient(),
Log: logger,
},
})
// +kubebuilder:scaffold:builder
logger.Infow("restarting chaos-controller")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
logger.Errorw("problem running manager", "error", err)
os.Exit(1)
}
}