Back to updatesSign up
Document resource limits and requests best practices
Approved & mergedby Sarah KimAug 31, 2026
This is where cuneify opens the PR
Connect your wiki to do it for real.
This is where cuneify opens the PR
Connect your wiki to do it for real.
Every production pod should define CPU and memory requests and limits. Requests determine scheduling; limits prevent runaway containers from affecting neighbors.
Base requests on the P50 usage observed in production over a 7-day window:
resources:
requests:
cpu: 250m
memory: 256Mi
Set limits at 2-3x the request to allow burst capacity without risking node stability:
resources:
limits:
cpu: 750m
memory: 512Mi
kubectl describe pod — look for "OOMKilled" in the last state.kubectl top pod or Prometheus metrics for 1-2 weeks