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
One-line enhancement description (can be used as a release note): Surface the next time a CronJob is scheduled to create a Job via a new alpha CronJobStatus.nextScheduleTime field, gated by the CronJobsNextScheduleTime feature gate.
Kubernetes Enhancement Proposal: KEP PR to be linked (draft in progress)
CronJob status exposes lastScheduleTime but not the next scheduled time. Users
must reimplement cron parsing and time-zone handling to answer "when does this run
next?". The CronJob controller already computes this value internally to schedule
its requeue; this enhancement surfaces it as a read-only status field behind an
alpha feature gate. Fixes the long-standing request in kubernetes/kubernetes#78564.
Please keep this description up to date. This will help the Enhancement Team to track the evolution of the enhancement efficiently.
Enhancement Description
CronJobStatus.nextScheduleTimefield, gated by theCronJobsNextScheduleTimefeature gate.k/enhancements) update PR(s): to be linkedk/k) update PR(s): Add nextScheduleTime to CronJob status (alpha) kubernetes#141428k/website) update PR(s):Summary
CronJob status exposes
lastScheduleTimebut not the next scheduled time. Usersmust reimplement cron parsing and time-zone handling to answer "when does this run
next?". The CronJob controller already computes this value internally to schedule
its requeue; this enhancement surfaces it as a read-only status field behind an
alpha feature gate. Fixes the long-standing request in kubernetes/kubernetes#78564.
Please keep this description up to date. This will help the Enhancement Team to track the evolution of the enhancement efficiently.