mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-02 06:16:08 -04:00
[node operator] ScalingGroup API gen
Signed-off-by: Malte Poll <mp@edgeless.systems>
This commit is contained in:
parent
ac5ddc27f2
commit
b315ec6dc1
13 changed files with 304 additions and 0 deletions
|
@ -77,6 +77,13 @@ func main() {
|
|||
setupLog.Error(err, "unable to create controller", "controller", "AutoscalingStrategy")
|
||||
os.Exit(1)
|
||||
}
|
||||
if err = (&controllers.ScalingGroupReconciler{
|
||||
Client: mgr.GetClient(),
|
||||
Scheme: mgr.GetScheme(),
|
||||
}).SetupWithManager(mgr); err != nil {
|
||||
setupLog.Error(err, "unable to create controller", "controller", "ScalingGroup")
|
||||
os.Exit(1)
|
||||
}
|
||||
//+kubebuilder:scaffold:builder
|
||||
|
||||
if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue