Due to the Kubernetes docs
A cron job creates a job object about once per execution time of its schedule. We say “about” because there are certain circumstances where two jobs might be created, or no job might be created. We attempt to make these rare, but do not completely prevent them. Therefore, jobs should be idempotent
But also CronJob has parameter: concurrencyPolicy (Allow, Forbid)
So could I expect that if I will set concurrencyPolicy=Forbid the CronJob will run always in single instance ?