From 333f8f953069a4e88ce1c587dd5230a4f2d71c26 Mon Sep 17 00:00:00 2001 From: kabicin <37311900+kabicin@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:59:13 -0500 Subject: [PATCH] Set max concurrent reconciles to 1 --- internal/controller/openlibertyapplication_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/controller/openlibertyapplication_controller.go b/internal/controller/openlibertyapplication_controller.go index 050c3a19..020eee27 100644 --- a/internal/controller/openlibertyapplication_controller.go +++ b/internal/controller/openlibertyapplication_controller.go @@ -921,7 +921,7 @@ func (r *ReconcileOpenLiberty) SetupWithManager(mgr ctrl.Manager) error { Owns(&appsv1.StatefulSet{}, builder.WithPredicates(predSubResWithGenCheck)). Owns(&autoscalingv1.HorizontalPodAutoscaler{}, builder.WithPredicates(predSubResource)). WithOptions(controller.Options{ - MaxConcurrentReconciles: 8, + MaxConcurrentReconciles: 1, }) ok, _ := r.IsGroupVersionSupported(routev1.SchemeGroupVersion.String(), "Route")