Skip to content

Commit bbe40dc

Browse files
authored
increasing node and pod worker number (#304)
1 parent 2648ed5 commit bbe40dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

controllers/core/node_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import (
4141
// on cache only a single go routine should be sufficient. Using more than
4242
// one routines to help high rate churn and larger nodes groups restarting
4343
// when the controller has to be restarted for various reasons.
44-
const MaxNodeConcurrentReconciles = 3
44+
const MaxNodeConcurrentReconciles = 7
4545

4646
// NodeReconciler reconciles a Node object
4747
type NodeReconciler struct {

controllers/core/pod_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ type PodReconciler struct {
5656

5757
var (
5858
PodRequeueRequest = ctrl.Result{Requeue: true, RequeueAfter: time.Second}
59-
MaxPodConcurrentReconciles = 4
59+
MaxPodConcurrentReconciles = 10
6060
)
6161

6262
// Reconcile handles create/update/delete event by delegating the request to the handler

0 commit comments

Comments
 (0)