Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Removing limits to make more efficient use of CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
cdbartholomew committed May 25, 2024
1 parent 760df23 commit b597945
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -583,10 +583,7 @@ private static ResourceRequirements convertResources(
memCpuUnits
* agentResourceUnitConfiguration.getMemPerUnit())));

return new ResourceRequirementsBuilder()
.withRequests(quantities)
.withLimits(quantities)
.build();
return new ResourceRequirementsBuilder().withRequests(quantities).build();
}

public static Map<String, String> getAgentLabels(String agentId, String applicationId) {
Expand Down

0 comments on commit b597945

Please sign in to comment.