Loading...
Need this managed for you, not just automated?
We're also a hands-on DevOps consultancy — Kubernetes, CI/CD, and cloud infrastructure.
Need this managed for you, not just automated?
We're also a hands-on DevOps consultancy — Kubernetes, CI/CD, and cloud infrastructure.
Playbook
Diagnose and resolve Out-Of-Memory (OOM) kills in Kubernetes.
Find OOMKilled Pods
kubectl get pods -A | grep -i OOMKilledCross-namespace OOM events
kubectl get events --field-selector reason=OOMKilling -ACheck Node OOM Events
journalctl -k | grep -i "out of memory"Get Pod Resource Usage vs Limits
kubectl top pod <pod-name> --containersInspect pod QoS class
kubectl get pod <name> -o jsonpath='{.status.qosClass}'