In the kubernetes documentation there is the following note at the page https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
Note that even if you specify .spec.parallelism = 1 and .spec.completions = 1 and .spec.template.spec.restartPolicy = "Never", the same program may sometimes be started twice.
Can this be avoided? E.g.: can we make sure that a job is started only at-most-once?
Thanks.