A county app occasionally leaks memory and risks starving other workloads on the same node. Which container setting caps that usage?
Select an answer to reveal the explanation.
Short Explanation
Requests help the scheduler reserve a seat; limits are the hard ceiling. If a leaky app blows past its memory limit, the runtime can OOM-kill it so neighbors survive.
Full Explanation
Resource limits set an upper bound on container consumption. Exceeding a memory limit typically results in OOMKill. Memory requests influence scheduling and QoS but are not themselves the hard kill ceiling. Probes and Service affinity settings do not implement memory quotas.