311 ticket workers on OKE must land on nodes with enough free capacity, yet noisy neighbors must not consume unbounded CPU. How should the Pod spec express that?
Select an answer to reveal the explanation.
Short Explanation
Requests are the reservation card that gets the Pod a seat; limits are the "no second helpings" cap. Zero requests with huge limits invites noisy neighbors. On managed or virtual nodes, put CPU and memory in the Pod spec so placement and caps are explicit.
Full Explanation
CPU and memory requests tell the scheduler (or, on virtual nodes, the pod-spec capacity you are asking OCI to run) what must be available. Limits cap consumption so one container cannot starve others. Requests of zero with huge limits create noisy-neighbor risk. Resource figures belong in the Pod spec—not only in a ConfigMap the scheduler does not use for placement.