Static pod VS pod in K8s

Hi guys,

I have created the info graph bellow. I would love to hear your input and corrections.

Also if you have something to add please let me know

HI @mohamed-Wadhi

Almost there. A pod doesn’t need to be a part of a replicaset to be restarted if it exits/fails/errors.
This is controlled by the value of

spec:
   restartPolicy: 

The default for this is Always, so you have to explicitly tell it not to restart by using one of the values OnFailure or Never

1 Like