Kubernetes Jobs
When a Job starts and a pod fails (exits with a non-zero exit status), the Job controller will, by default, retry the pod based on the restartPolicy:
If restartPolicy is OnFailure, the same pod is restarted on the same node.
If restartPolicy is Nev...
bhuvanchand.hashnode.dev4 min read