Skip to content

Commit

Permalink
馃悰 Increase sidecar memory. (#8727)
Browse files Browse the repository at this point in the history
* Up to 25 Mi just in case.
  • Loading branch information
davinchia committed Dec 12, 2021
1 parent 5adb1d1 commit a983f53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class KubePodProcess extends Process {

private static final String INIT_CONTAINER_NAME = "init";
private static final Long STATUS_CHECK_INTERVAL_MS = 30 * 1000L;
private static final String DEFAULT_MEMORY_LIMIT = "6Mi";
private static final String DEFAULT_MEMORY_LIMIT = "25Mi";
private static final ResourceRequirements DEFAULT_SIDECAR_RESOURCES = new ResourceRequirements()
.withMemoryLimit(DEFAULT_MEMORY_LIMIT).withMemoryRequest(DEFAULT_MEMORY_LIMIT);

Expand Down

0 comments on commit a983f53

Please sign in to comment.