diff --git a/_docs/pipelines/triggers/cron-triggers.md b/_docs/pipelines/triggers/cron-triggers.md index c09d7c88e..798485cdd 100644 --- a/_docs/pipelines/triggers/cron-triggers.md +++ b/_docs/pipelines/triggers/cron-triggers.md @@ -157,7 +157,6 @@ The table below describes the fields you can define in a Cron expression. {: .table .table-bordered .table-hover} Field | Mandatory | Allowed values | Allowed special characters |---------- | ---------- | -------------- | --------------------------| -Seconds | No | 0-59 | * / , -| Minutes | Yes | 0-59 | * / , -| Hours | Yes | 0-23 | * / , -| Day of month | Yes | 1-31 | * / , - ?| @@ -178,28 +177,6 @@ The table below describes the purpose of the special characters in a Cron expres |**Hyphen** (`-`) | Hyphens define ranges. For example, `9-17` would indicate every hour between 9am and 5pm inclusive.| |**Question mark** (`?`) | Question marks are instead of asterisks (`*`) to leave either day-of-month or day-of-week blank.| -### Predefined scheduling for Cron jobs - -You can use one of several predefined schedules instead of a Cron expression. -The table below describes the predefined schedules supported. - -{: .table .table-bordered .table-hover} -|Predefined schedule | Description | Equivalent to| -|----- | ----------- | -------------| -|@YEARLY (or @ANNUALLY) | Run once a year, midnight, Jan. 1st | 0 0 0 1 1 *| -|@MONTHLY | Run once a month, midnight, first of month | 0 0 0 1 **| -|@WEEKLY | Run once a week, midnight on Sunday | 0 0 0 ** 0| -|@DAILY (or @MIDNIGHT) | Run once a day, midnight | 0 0 0 ** *| -|@HOURLY | Run once an hour, beginning of hour | 0 0 ** **| - -### Fixed interval scheduling for Cron jobs - -You can also schedule a job to execute at fixed intervals by adding `@every `. The is a string that represents the desired frequency. -For example, `@every 1h30m10s` would indicate a schedule that triggers every 1 hour, 30 minutes, 10 seconds. - ->**NOTE** -The interval does not take the runtime of the job into account. For example, if a job takes three minutes to run, and it is scheduled to run every five minutes, it will have only two minutes of idle time between each run. - ### Conditional triggers for Cron jobs Take a look at our Knowledge Base how-to: [Skip pipeline step if triggered by Cron job]({{site.baseurl}}/docs/kb/articles/skip-test-if-pipeline-is-triggered-with-cron/). diff --git a/images/pipeline/triggers/cron/cron-timer-tab.png b/images/pipeline/triggers/cron/cron-timer-tab.png index 48ecdb0b6..ef86955b1 100644 Binary files a/images/pipeline/triggers/cron/cron-timer-tab.png and b/images/pipeline/triggers/cron/cron-timer-tab.png differ