Merge pull request #44700 from sgoldin/patch-1

fix: clarify day of the week in cron job documentation
pull/44736/head
Kubernetes Prow Robot 2024-01-14 17:15:44 +01:00 committed by GitHub
commit 15df04719e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -55,9 +55,9 @@ The `.spec.schedule` field is required. The value of that field follows the [Cro
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday;
# │ │ │ │ │ 7 is also Sunday on some systems)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday)
# │ │ │ │ │ OR sun, mon, tue, wed, thu, fri, sat
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
```