kubernetes pods keeps restarting
I had this situation whereby kubernetes pods keep on restarting even if I tried deleting it.
As soon as it gets deleted, two new instance get created again.
So i tried looking for what causes it. For my case, it is the replicationcontroller.
kubectl get replicationcontroller
kubectl delete replicationcontroller "connectcd"
And this solves it! :)
Comments