A municipal API container should reserve 100 millicores and 128Mi of memory while capping use at 500 millicores and 256Mi. Which resources block matches that intent?
Select an answer to reveal the explanation.
Short Explanation
Requests are the reserved table; limits are the hard ceiling. Set the smaller numbers as requests and the higher caps as limits. Skipping units or swapping the values muddies scheduling and QoS.
Full Explanation
Container resources.requests influence scheduling and Guaranteed/Burstable classification, while resources.limits cap usage (CPU throttle, memory OOM). Express CPU in millicores (100m) and memory with binary units (128Mi). Setting requests below limits is a common pattern for Burstable Pods that still have defined caps.