-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
261 lines (226 loc) · 8.05 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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
Copyright 2021.
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 (
"context"
"crypto/tls"
"flag"
"fmt"
"net/http"
"os"
"strings"
"time"
"k8s.io/apimachinery/pkg/api/errors"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/healthz"
// 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/client-go/rest"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
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/cache"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/webhook"
ptpv1 "github.com/k8snetworkplumbingwg/ptp-operator/api/v1"
"github.com/k8snetworkplumbingwg/ptp-operator/controllers"
"github.com/k8snetworkplumbingwg/ptp-operator/pkg/leaderelection"
"github.com/k8snetworkplumbingwg/ptp-operator/pkg/names"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(ptpv1.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
}
func main() {
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
var enableHTTP2 bool
flag.BoolVar(&enableHTTP2, "enable-http2", enableHTTP2, "If HTTP/2 should be enabled for the metrics and webhook servers.")
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address 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.Parse()
restConfig := ctrl.GetConfigOrDie()
ctrl.SetLogger(zap.New(zap.UseDevMode(true)))
le := leaderelection.GetLeaderElectionConfig(restConfig, enableLeaderElection)
disableHTTP2 := func(c *tls.Config) {
if enableHTTP2 {
return
}
c.NextProtos = []string{"http/1.1"}
}
webhookServerOptions := webhook.Options{
TLSOpts: []func(config *tls.Config){disableHTTP2},
Port: 9443,
}
webhookServer := webhook.NewServer(webhookServerOptions)
options := ctrl.Options{
Scheme: scheme,
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaseDuration: &le.LeaseDuration.Duration,
RenewDeadline: &le.RenewDeadline.Duration,
RetryPeriod: &le.RetryPeriod.Duration,
LeaderElectionID: "ptp.openshift.io",
LeaderElectionReleaseOnCancel: true,
Metrics: server.Options{
BindAddress: metricsAddr,
},
WebhookServer: webhookServer,
}
namespace := os.Getenv("WATCH_NAMESPACE")
// create multi namespace cache if list of namespaces
if namespace != "" {
defaultNamespaces := map[string]cache.Config{}
for _, namespace := range strings.Split(namespace, ",") {
defaultNamespaces[namespace] = cache.Config{}
}
options.NewCache = func(config *rest.Config, opts cache.Options) (cache.Cache, error) {
opts.DefaultNamespaces = defaultNamespaces
return cache.New(config, opts)
}
setupLog.Info(fmt.Sprintf("Namespaces added to the cache: %s", namespace))
}
mgr, err := ctrl.NewManager(restConfig, options)
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
if err = (&controllers.PtpOperatorConfigReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("PtpOperatorConfig"),
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "PtpOperatorConfig")
os.Exit(1)
}
if err = (&controllers.PtpConfigReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("PtpConfig"),
Scheme: mgr.GetScheme(),
}).SetupWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "PtpConfig")
os.Exit(1)
}
if err = (&ptpv1.PtpConfig{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "PtpConfig")
os.Exit(1)
}
// +kubebuilder:scaffold:builder
if err = (&ptpv1.PtpOperatorConfig{}).SetupWebhookWithManager(mgr, mgr.GetClient()); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "PtpOperatorConfig")
os.Exit(1)
}
checker := mgr.GetWebhookServer().StartedChecker()
//+kubebuilder:scaffold:builder
if err := mgr.AddHealthzCheck("healthz", checker); err != nil {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", checker); err != nil {
setupLog.Error(err, "unable to set up ready check")
os.Exit(1)
}
go func() {
// Wait until the webhook server is ready.
setupLog.Info("waiting for validating webhook to be ready")
err = waitForWebhookServer(checker)
if err != nil {
setupLog.Error(err, "unable to create default PtpOperatorConfig due to webhook not ready")
} else {
// create default before the webhook are setup
err = createDefaultOperatorConfig(ctrl.GetConfigOrDie())
if err != nil {
setupLog.Error(err, "unable to create default PtpOperatorConfig")
}
}
}()
setupLog.Info("starting manager")
if err = mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
func createDefaultOperatorConfig(cfg *rest.Config) error {
logger := setupLog.WithName("createDefaultOperatorConfig")
c, err := client.New(cfg, client.Options{Scheme: scheme})
if err != nil {
return fmt.Errorf("couldn't create client: %v", err)
}
config := &ptpv1.PtpOperatorConfig{
Spec: ptpv1.PtpOperatorConfigSpec{
DaemonNodeSelector: map[string]string{},
},
}
err = c.Get(context.TODO(), types.NamespacedName{
Name: names.DefaultOperatorConfigName, Namespace: names.Namespace}, config)
if err != nil {
if errors.IsNotFound(err) {
logger.Info("Create default OperatorConfig")
config.Namespace = names.Namespace
config.Name = names.DefaultOperatorConfigName
err = c.Create(context.TODO(), config)
if err != nil {
return err
}
}
// Error reading the object - requeue the request.
return err
}
return nil
}
func setupChecks(mgr ctrl.Manager, checker healthz.Checker) {
if err := mgr.AddReadyzCheck("webhook", checker); err != nil {
setupLog.Error(err, "unable to create ready check")
os.Exit(1)
}
if err := mgr.AddHealthzCheck("webhook", checker); err != nil {
setupLog.Error(err, "unable to create health check")
os.Exit(1)
}
}
// waitForWebhookServer waits until the webhook server is ready.
func waitForWebhookServer(checker func(req *http.Request) error) error {
const (
timeout = 30 * time.Second // Adjust timeout as needed
pollingFreq = 1 * time.Second // Polling frequency
)
start := time.Now()
// Create an HTTP request to check the readiness of the webhook server.
req, err := http.NewRequest("GET", "https://localhost:9443/healthz", nil)
if err != nil {
return err
}
// Poll the checker function until it returns nil (indicating success)
// or until the timeout is reached.
for {
if err = checker(req); err == nil {
return nil
} else if time.Since(start) > timeout {
return fmt.Errorf("timeout waiting for webhook server to start")
}
time.Sleep(pollingFreq) // Poll every second
}
}