forked from smartxworks/cluster-api-provider-elf-static-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
168 lines (145 loc) · 5.4 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
/*
Copyright 2022.
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"
"math/rand"
"os"
"time"
ipamv1 "github.com/metal3-io/ip-address-manager/api/v1alpha1"
capev1 "github.com/smartxworks/cluster-api-provider-elf/api/v1beta1"
"github.com/smartxworks/cluster-api-provider-elf/pkg/context"
capemanager "github.com/smartxworks/cluster-api-provider-elf/pkg/manager"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
cgscheme "k8s.io/client-go/kubernetes/scheme"
"k8s.io/klog/v2"
"k8s.io/klog/v2/klogr"
capiv1 "sigs.k8s.io/cluster-api/api/v1beta1"
bootstrapv1 "sigs.k8s.io/cluster-api/bootstrap/kubeadm/api/v1beta1"
clusterctlv1 "sigs.k8s.io/cluster-api/cmd/clusterctl/api/v1alpha3"
controlplanev1 "sigs.k8s.io/cluster-api/controlplane/kubeadm/api/v1beta1"
addonsv1 "sigs.k8s.io/cluster-api/exp/addons/api/v1beta1"
"sigs.k8s.io/controller-runtime/pkg/healthz"
ctrllog "sigs.k8s.io/controller-runtime/pkg/log"
ctrlmgr "sigs.k8s.io/controller-runtime/pkg/manager"
ctrlsig "sigs.k8s.io/controller-runtime/pkg/manager/signals"
"github.com/smartxworks/cluster-api-provider-elf-static-ip/controllers"
"github.com/smartxworks/cluster-api-provider-elf-static-ip/pkg/manager"
"github.com/smartxworks/cluster-api-provider-elf-static-ip/version"
)
var (
setupLog = ctrllog.Log.WithName("entrypoint")
managerOpts capemanager.Options
syncPeriod time.Duration
defaultSyncPeriod = manager.DefaultSyncPeriod
defaultLeaderElectionID = manager.DefaultLeaderElectionID
)
func main() {
rand.Seed(time.Now().UnixNano())
klog.InitFlags(nil)
ctrllog.SetLogger(klogr.New())
if err := flag.Set("v", "2"); err != nil {
klog.Fatalf("failed to set log level: %v", err)
}
flag.StringVar(
&managerOpts.MetricsBindAddress,
"metrics-bind-addr",
"localhost:8080",
"The address the metric endpoint binds to.")
flag.BoolVar(
&managerOpts.LeaderElection,
"leader-elect",
true,
"Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.")
flag.StringVar(
&managerOpts.LeaderElectionID,
"leader-election-id",
defaultLeaderElectionID,
"Name of the config map to use as the locking resource when configuring leader election.")
flag.StringVar(
&managerOpts.Namespace,
"namespace",
"",
"Namespace that the controller watches to reconcile cluster-api objects. If unspecified, the controller watches for cluster-api objects across all namespaces.")
flag.StringVar(
&managerOpts.LeaderElectionNamespace,
"leader-election-namespace",
"",
"Namespace that the controller performs leader election in. If unspecified, the controller will discover which namespace it is running in.",
)
flag.DurationVar(
&syncPeriod,
"sync-period",
defaultSyncPeriod,
"The interval at which cluster-api objects are synchronized")
flag.IntVar(
&managerOpts.MaxConcurrentReconciles,
"max-concurrent-reconciles",
10,
"The maximum number of allowed, concurrent reconciles.")
flag.StringVar(
&managerOpts.HealthProbeBindAddress,
"health-addr",
":9440",
"The address the health endpoint binds to.",
)
flag.Parse()
if managerOpts.Namespace != "" {
setupLog.Info(
"Watching objects only in namespace for reconciliation",
"namespace", managerOpts.Namespace)
}
managerOpts.PodName = manager.DefaultPodName
managerOpts.SyncPeriod = &syncPeriod
managerOpts.Scheme = runtime.NewScheme()
utilruntime.Must(cgscheme.AddToScheme(managerOpts.Scheme))
utilruntime.Must(capiv1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(controlplanev1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(bootstrapv1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(addonsv1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(clusterctlv1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(capev1.AddToScheme(managerOpts.Scheme))
utilruntime.Must(ipamv1.AddToScheme(managerOpts.Scheme))
// Create a function that adds all of the controllers and webhooks to the manager.
addToManager := func(ctx *context.ControllerManagerContext, mgr ctrlmgr.Manager) error {
if err := controllers.AddMachineControllerToManager(ctx, mgr); err != nil {
return err
}
return nil
}
setupLog.Info("creating controller manager", "version", version.Get().String())
managerOpts.AddToManager = addToManager
mgr, err := capemanager.New(managerOpts)
if err != nil {
setupLog.Error(err, "problem creating controller manager")
os.Exit(1)
}
setupChecks(mgr)
sigHandler := ctrlsig.SetupSignalHandler()
setupLog.Info("starting controller manager")
if err := mgr.Start(sigHandler); err != nil {
setupLog.Error(err, "problem running controller manager")
os.Exit(1)
}
}
func setupChecks(mgr ctrlmgr.Manager) {
if err := mgr.AddReadyzCheck("ping", healthz.Ping); err != nil {
setupLog.Error(err, "unable to create ready check")
os.Exit(1)
}
if err := mgr.AddHealthzCheck("ping", healthz.Ping); err != nil {
setupLog.Error(err, "unable to create health check")
os.Exit(1)
}
}