My kubernetes pods keep crashing with “CrashLoopBackOff” but I can’t find any log

As @Sukumar commented, you need to have your Dockerfile have a Command to run or have your ReplicationController specify a command.

The pod is crashing because it starts up then immediately exits, thus Kubernetes restarts and the cycle continues.

Leave a Comment