Common workload problems
This section lists common issues you might see with pods and/or deployments in an EKS cluster, along with potential solutions.
State: Running Started: Sun, 16 Feb 2020 10:20:09 +0000 Last State: Terminated Reason: OOMKilled
In the preceding error message from the kubectl describe pod
command, the most likely issue is a connectivity issue or a memory issue, as OOMKilled
means that the pod has reached its memory limit, so it restarts. You need to increase the memory setting in the deployment or pod specification.
NAME READY STATUS RESTARTS AGE myDeployment1-123... 1/1 Running 1 17m myDeployment1-234... 0/1 CrashLoopBackOff 2...