-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cron): Support multiple cron expressions #127
Conversation
dd4a016
to
adc222e
Compare
Codecov ReportBase: 70.36% // Head: 70.60% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #127 +/- ##
==========================================
+ Coverage 70.36% 70.60% +0.24%
==========================================
Files 194 200 +6
Lines 10284 10386 +102
==========================================
+ Hits 7236 7333 +97
- Misses 2661 2664 +3
- Partials 387 389 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
e6e927f
to
6f1ea8e
Compare
Closes #7.
Overview
This PR introduces support for multiple cron expressions per JobConfig.
For example, given the following JobConfig spec:
This allows us to specify that the JobConfig shall be periodically scheduled as follows:
API Semantics
expression
/expressions
is allowed inspec.schedule.cron
.0/30 10-19 * * *
and0 0/2 * * *
. However, the JobConfig will be scheduled only once.Changes
expressions
tospec.schedule.cron
and make bothexpression
/expressions
optional.Expression
interface, which is implemented by*cronexpr.Expression
, as well as a newmultiExpression
implementation.Next()
.