Skip to content

Commit

Permalink
fix: eph.storage requests was using limit value (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
phlg authored Oct 4, 2023
1 parent 24f7fd4 commit 553c3d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public Map<String, String> asMap() {
quotas.put("limits.cpu", getCpuLimits());
quotas.put("requests.storage", getStorageRequests());
quotas.put("count/pods", getPodsCount() == null ? null : String.valueOf(getPodsCount()));
quotas.put("requests.ephemeral-storage", getEphemeralStorageLimits());
quotas.put("requests.ephemeral-storage", getEphemeralStorageRequests());
quotas.put("limits.ephemeral-storage", getEphemeralStorageLimits());
quotas.put(
"requests.nvidia.com/gpu",
Expand Down

0 comments on commit 553c3d8

Please sign in to comment.