A CronJob is counted as _____ if its concurrencyPolicy is set to Forbid, and it attempted to be scheduled when there was a previous schedule still running.
missed
A job's _____ is the number of Pods it may run at the same time. By default, it is set to 1.
parallelism
If a Job's parallelism is set to 0, the Job is _____.
paused until Parallelism is increased
Every dependent (i.e. owned) object has a metadata._____ field that points to the owning object (usually a Controller). You can specify relationships between owners and dependents by manually setting the field.
ownerReferences
A _____ runs a Pod periodically at specified times.
CronJob
All CronJob schedules are based on the timezone of the _____.
kube-controller-manager
"A CronJob is counted as ""_____"" if it has failed to be created at its scheduled time."
missed
A _____ run a Pod a specified number of times before completing.
Job
A _____ creates one or more Pods and ensures that a specified number of them successfully terminate. The minimum required number of completions is configured via the Job's .spec.completions field.
Job
A CronJob is counted as missed if its concurrencyPolicy is set to _____, and it attempted to be scheduled when there was a previous schedule still running.
Forbid
Jobs on a repeating schedule are called _____
CronJobs
A single _____ object is similar to a single line of a crontab file.
CronJob
A job's parallelism is the number of _____ it may run at the same time. By default, it is set to 1.
Pods
A Job creates one or more Pods and ensures that a specified number of them successfully terminate. The minimum required number of completions is configured via the Job's .spec._____ field.
completions
If a Job's parallelism is set to _____, the Job is paused until Parallelism is increased.
0
A single CronJob object is similar to a single line of a _____ file.
crontab