Skip to content

Commit 3a6e5c5

Browse files
authored
porch: raise memory limit, also remove CPU limit (#2829)
The memory limit was too tight and we were hitting it (and I don't think the limit was high enough that we should prioritize the usage - yet!) For CPU, the general advice is to set a request but not to set a limit.
1 parent 84e55ff commit 3a6e5c5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

porch/config/deploy/3-porch-server.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,10 @@ spec:
4747
imagePullPolicy: Always
4848
resources:
4949
requests:
50-
memory: "64Mi"
50+
memory: "256Mi"
5151
cpu: "250m"
5252
limits:
53-
memory: "128Mi"
54-
cpu: "1000m"
53+
memory: "512Mi"
5554
volumeMounts:
5655
- mountPath: /cache
5756
name: cache-volume

0 commit comments

Comments
 (0)