You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<1> Schedule for the job specified in link:https://en.wikipedia.org/wiki/Cron[cron format]. In this example, the job will run every minute.
45
-
<2> An optional concurrency policy, specifying how to treat concurrent jobs within a cron job. Only one of the following concurrent policies may be specified. If not specified, this defaults to allowing concurrent executions.
46
+
<2> An optional time zone for the schedule. See link:https://en.wikipedia.org/wiki/List_of_tz_database_time_zones[List of tz database time zones] for valid options. If not specified, the Kubernetes controller manager interprets the schedule relative to its local time zone. This setting is offered as a link:https://access.redhat.com/support/offerings/techpreview[Technology Preview].
47
+
<3> An optional concurrency policy, specifying how to treat concurrent jobs within a cron job. Only one of the following concurrent policies may be specified. If not specified, this defaults to allowing concurrent executions.
46
48
* `Allow` allows cron jobs to run concurrently.
47
49
* `Forbid` forbids concurrent runs, skipping the next run if the previous has not
48
50
finished yet.
49
51
* `Replace` cancels the currently running job and replaces
50
52
it with a new one.
51
-
<3> An optional deadline (in seconds) for starting the job if it misses its
53
+
<4> An optional deadline (in seconds) for starting the job if it misses its
52
54
scheduled time for any reason. Missed jobs executions will be counted as failed
53
55
ones. If not specified, there is no deadline.
54
-
<4> An optional flag allowing the suspension of a cron job. If set to `true`,
56
+
<5> An optional flag allowing the suspension of a cron job. If set to `true`,
55
57
all subsequent executions will be suspended.
56
-
<5> The number of successful finished jobs to retain (defaults to 3).
57
-
<6> The number of failed finished jobs to retain (defaults to 1).
58
-
<7> Job template. This is similar to the job example.
59
-
<8> Sets a label for jobs spawned by this cron job.
60
-
<9> The restart policy of the pod. This does not apply to the job controller.
58
+
<6> The number of successful finished jobs to retain (defaults to 3).
59
+
<7> The number of failed finished jobs to retain (defaults to 1).
60
+
<8> Job template. This is similar to the job example.
61
+
<9> Sets a label for jobs spawned by this cron job.
62
+
<10> The restart policy of the pod. This does not apply to the job controller.
0 commit comments