- Home
- All questions
- Question 177
CKA study material · question 177 of 1000
How does the runtime treat a container that exceeds its limits? Choose two.
Show the answer
Answer: B. Exceeding a memory limit terminates the container as OOMKilled
D. Exceeding a CPU limit throttles the container rather than terminating it
Memory over its limit is killed with reason OOMKilled and exit code 137; CPU is throttled, never terminated.
Source: Resource Management for Pods and Containers (Kubernetes) — Troubleshooting