Skip to content

Commit 5ee7234

Browse files
committed
Increase limits for sharder
The memory usage is much higher during sharder resyncs now that they run with parallelism.
1 parent f3a9677 commit 5ee7234

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/sharder/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ spec:
5454
resources:
5555
limits:
5656
cpu: 200m
57-
memory: 128Mi
57+
memory: 512Mi
5858
requests:
5959
cpu: 100m
60-
memory: 64Mi
60+
memory: 256Mi
6161
volumes:
6262
- name: config
6363
configMap:

pkg/controller/sharder/reconciler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req reconcile.Request) (reco
8686

8787
log.Info("Starting resync of object assignments for ControllerRing")
8888
defer func(start time.Time) {
89-
log.V(1).Info("Finished resync of object assignments for ControllerRing", "duration", r.Clock.Since(start))
89+
log.Info("Finished resync of object assignments for ControllerRing", "duration", r.Clock.Since(start))
9090
}(r.Clock.Now())
9191

9292
if err := o.ResyncControllerRing(ctx, log); err != nil {

0 commit comments

Comments
 (0)