-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
120 lines (101 loc) · 3.46 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
/*
Copyright 2017 The Kubernetes Authors.
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 (
"flag"
"fmt"
"os"
"strconv"
"time"
configv1 "github.com/openshift/api/config/v1"
machinev1 "github.com/openshift/cluster-api/pkg/apis/machine/v1beta1"
"github.com/openshift/cluster-machine-approver/pkg/controller"
"github.com/openshift/cluster-machine-approver/pkg/metrics"
corev1 "k8s.io/api/core/v1"
control "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
ctrl "sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/manager"
"k8s.io/klog/v2"
)
func main() {
var cliConfig string
flagSet := flag.NewFlagSet("cluster-machine-approver", flag.ExitOnError)
klog.InitFlags(flagSet)
flagSet.StringVar(&cliConfig, "config", "", "CLI config")
flagSet.Parse(os.Args[1:])
// Now let's start the controller
stop := make(chan struct{})
defer close(stop)
metricsPort := metrics.DefaultMetricsPort
if port, ok := os.LookupEnv("METRICS_PORT"); ok {
v, err := strconv.Atoi(port)
if err != nil {
klog.Fatalf("Error parsing METRICS_PORT (%q) environment variable: %v", port, err)
}
metricsPort = fmt.Sprintf(":%d", v)
}
// Create a new Cmd to provide shared dependencies and start components
klog.Info("setting up manager")
syncPeriod := 10 * time.Minute
mgr, err := manager.New(control.GetConfigOrDie(), manager.Options{
MetricsBindAddress: metricsPort,
SyncPeriod: &syncPeriod,
})
if err != nil {
klog.Fatalf("unable to set up overall controller manager: %v", err)
}
klog.Info("registering components")
klog.Info("setting up scheme")
if err := configv1.Install(mgr.GetScheme()); err != nil {
klog.Fatal(err)
}
if err := machinev1.AddToScheme(mgr.GetScheme()); err != nil {
klog.Fatal("unable to add Machines to scheme")
}
directClient, err := client.New(mgr.GetConfig(), client.Options{
Scheme: mgr.GetScheme(),
Mapper: mgr.GetRESTMapper(),
})
if err != nil {
klog.Fatal("unable to set up client")
}
// Prevent the controller from caching node and machine objects.
// Stale nodes and machines can cause the approver to not approve certificates
// within a timely manner, leading to failed node bootstraps.
approverClient, err := client.NewDelegatingClient(client.NewDelegatingClientInput{
Client: directClient,
CacheReader: mgr.GetClient(),
UncachedObjects: []client.Object{
&machinev1.Machine{},
&corev1.Node{},
},
})
if err != nil {
klog.Fatalf("unable to set up delegating client: %v", err)
}
// Setup all Controllers
klog.Info("setting up controllers")
if err = (&controller.CertificateApprover{
Client: approverClient,
RestCfg: mgr.GetConfig(),
Config: controller.LoadConfig(cliConfig),
}).SetupWithManager(mgr, ctrl.Options{}); err != nil {
klog.Fatalf("unable to create CSR controller: %v", err)
}
// Start the Cmd
klog.Info("starting the cmd")
if err := mgr.Start(control.SetupSignalHandler()); err != nil {
klog.Fatalf("unable to run the manager: %v", err)
}
}