Pod restarting continuously impact

Viewed 46

I had an argument with my colleague about what is wrong if we used only readiness probe for every issue (database failure, external service loading after startup, ...)

Is there some impact with restarting just one pod continuously till the issue is fixed ?

the same question for multiple pods restarting continuously at the same times

1 Answers

To Deploy with restartPolicy: never and then use kubectl patch to modify the restart policy of that deployment.

To avoid continuous restart attempt of failing pod there is one open issue.

Related