Cron Job Spec
data class CronJobSpec(val concurrencyPolicy: String? = null, val failedJobsHistoryLimit: Int? = null, val jobTemplate: JobTemplateSpec, val schedule: String, val startingDeadlineSeconds: Int? = null, val successfulJobsHistoryLimit: Int? = null, val suspend: Boolean? = null)
CronJobSpec describes how the job execution will look like and when it will actually run.
Constructors
Link copied to clipboard
fun CronJobSpec(concurrencyPolicy: String? = null, failedJobsHistoryLimit: Int? = null, jobTemplate: JobTemplateSpec, schedule: String, startingDeadlineSeconds: Int? = null, successfulJobsHistoryLimit: Int? = null, suspend: Boolean? = null)