kubernetes pods not showing running instead showing CrashLoopBackOff

11/23/2016

While performing Twitter data migration from Twitter to pubsub and then to bigquery, I created 2 pods namely bigquery controller and twitter-pubsub. But when I give describe pods twitter-pubsub the status shows CrashLoopbackOff. What can be the reason for this?

enter image description here

-- abhiroop pathak
kubernetes
twitter

1 Answer

11/23/2016

Look at the eventlog of your pod kubectl describe pod twitter-stream-6p8ca to see what the crash reason was. Look at your application's previous run logs to see if you can make sense of it kubectl logs twitter-stream-6p8ca --previous

-- Mark van Straten
Source: StackOverflow