You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add clusteraddon controller which is responsible to reconcile
ClusterAddons. It templates the ClusterAddon Helm Chart from the cluster
stack assets and applies its objects. It also updates the objects if the
Helm Chart has been updates and only then - not necessarily on each
update of a ClusterStack version.
Signed-off-by: janiskemper <[email protected]>
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
71
76
flag.StringVar(&probeAddr, "health-probe-bind-address", ":9440", "The address the probe endpoint binds to.")
72
77
flag.BoolVar(&enableLeaderElection, "leader-elect", true, "Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.")
@@ -78,6 +83,8 @@ func main() {
78
83
flag.IntVar(&clusterAddonConcurrency, "clusteraddon-concurrency", 1, "Number of ClusterAddons to process simultaneously")
79
84
flag.StringVar(&logLevel, "log-level", "info", "Specifies log level. Options are 'debug', 'info' and 'error'")
80
85
flag.StringVar(&releaseDir, "release-dir", "/tmp/downloads/", "Specify release directory for cluster-stack releases")
86
+
flag.Float64Var(&qps, "qps", 50, "Enable custom query per second for kubernetes API server")
87
+
flag.IntVar(&burst, "burst", 100, "Enable custom burst defines how many queries the API server will accept before enforcing the limit established by qps")
0 commit comments