forked from kubernetes-sigs/cluster-api-provider-vsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
180 lines (162 loc) · 5.42 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
/*
Copyright 2018 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"
"net/http"
"net/http/pprof"
"os"
"strconv"
"time"
"k8s.io/klog"
"k8s.io/klog/klogr"
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"
"sigs.k8s.io/cluster-api-provider-vsphere/controllers"
"sigs.k8s.io/cluster-api-provider-vsphere/pkg/context"
"sigs.k8s.io/cluster-api-provider-vsphere/pkg/manager"
)
var (
managerOpts manager.Options
defaultProfilerAddr = os.Getenv("PROFILER_ADDR")
defaultSyncPeriod = manager.DefaultSyncPeriod
defaultMaxConcurrentReconciles = manager.DefaultMaxConcurrentReconciles
defaultLeaderElectionID = manager.DefaultLeaderElectionID
defaultPodNamespace = manager.DefaultPodNamespace
defaultPodName = manager.DefaultPodName
defaultWatchNamespace = manager.DefaultWatchNamespace
)
func init() {
if v, err := time.ParseDuration(os.Getenv("SYNC_PERIOD")); err == nil {
defaultSyncPeriod = v
}
if v, err := strconv.Atoi(os.Getenv("MAX_CONCURRENT_RECONCILES")); err == nil {
defaultMaxConcurrentReconciles = v
}
if v := os.Getenv("LEADER_ELECTION_ID"); v != "" {
defaultLeaderElectionID = v
}
if v := os.Getenv("POD_NAMESPACE"); v != "" {
defaultPodNamespace = v
}
if v := os.Getenv("POD_NAME"); v != "" {
defaultPodName = v
}
if v := os.Getenv("WATCH_NAMESPACE"); v != "" {
defaultWatchNamespace = v
}
}
func main() {
klog.InitFlags(nil)
ctrllog.SetLogger(klogr.New())
setupLog := ctrllog.Log.WithName("entrypoint")
if err := flag.Set("v", "2"); err != nil {
klog.Fatalf("failed to set log level: %v", err)
}
flag.StringVar(
&managerOpts.MetricsAddr,
"metrics-addr",
":8084",
"The address the metric endpoint binds to.")
flag.BoolVar(
&managerOpts.LeaderElectionEnabled,
"enable-leader-election",
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.WatchNamespace,
"watch-namespace",
defaultWatchNamespace,
"Namespace that the controller watches to reconcile cluster-api objects. If unspecified, the controller watches for cluster-api objects across all namespaces.")
profilerAddress := flag.String(
"profiler-address",
defaultProfilerAddr,
"Bind address to expose the pprof profiler")
flag.DurationVar(
&managerOpts.SyncPeriod,
"sync-period",
defaultSyncPeriod,
"The interval at which cluster-api objects are synchronized")
flag.IntVar(
&managerOpts.MaxConcurrentReconciles,
"max-concurrent-reconciles",
defaultMaxConcurrentReconciles,
"The maximum number of allowed, concurrent reconciles.")
flag.StringVar(
&managerOpts.PodNamespace,
"pod-namespace",
defaultPodNamespace,
"The namespace in which the pod running the controller manager is located.")
flag.StringVar(
&managerOpts.PodName,
"pod-name",
defaultPodName,
"The name of the pod running the controller manager.")
flag.Parse()
if managerOpts.WatchNamespace != "" {
setupLog.Info(
"Watching objects only in namespace for reconciliation",
"namespace", managerOpts.WatchNamespace)
}
if *profilerAddress != "" {
setupLog.Info(
"Profiler listening for requests",
"profiler-address", *profilerAddress)
go runProfiler(*profilerAddress)
}
// 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.AddClusterControllerToManager(ctx, mgr); err != nil {
return err
}
if err := controllers.AddMachineControllerToManager(ctx, mgr); err != nil {
return err
}
if err := controllers.AddVMControllerToManager(ctx, mgr); err != nil {
return err
}
if err := controllers.AddHAProxyLoadBalancerControllerToManager(ctx, mgr); err != nil {
return err
}
return nil
}
setupLog.Info("creating controller manager")
managerOpts.AddToManager = addToManager
mgr, err := manager.New(managerOpts)
if err != nil {
setupLog.Error(err, "problem creating controller manager")
os.Exit(1)
}
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 runProfiler(addr string) {
mux := http.NewServeMux()
mux.HandleFunc("/debug/pprof/", pprof.Index)
mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
_ = http.ListenAndServe(addr, mux)
}