Back to Glossary
Kubernetes

What is OOMKilled?

A Kubernetes container termination reason when a container exceeds its memory limit.

OOMKilled (Out of Memory Killed) is the container exit reason when the Linux kernel's OOM (Out Of Memory) killer terminates a process because it exceeded its cgroup memory limit. In Kubernetes, this happens when a container uses more memory than its spec.containers.resources.limits.memory setting. The pod restarts, but if the leak is in the code, it will OOMKill again. Fix by increasing limits, reducing memory usage, or finding the memory leak.

Deep Dive Guide

kubernetes oomkilled fix

Test your knowledge of OOMKilled and 130 other DevOps concepts