Skip to content

Commit

Permalink
Set max concurrent reconciles to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
kabicin committed Nov 26, 2024
1 parent d3e9b9a commit 333f8f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controller/openlibertyapplication_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 333f8f9

Please sign in to comment.