Class CronJobSpec
CronJobSpec describes how the job execution will look like and when it will actually run.
Inheritance
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Outputs.Batch.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class CronJobSpec
Fields
View SourceConcurrencyPolicy
Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one
Declaration
public readonly string ConcurrencyPolicy
Field Value
| Type | Description |
|---|---|
| System.String |
FailedJobsHistoryLimit
The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.
Declaration
public readonly int FailedJobsHistoryLimit
Field Value
| Type | Description |
|---|---|
| System.Int32 |
JobTemplate
Specifies the job that will be created when executing a CronJob.
Declaration
public readonly JobTemplateSpec JobTemplate
Field Value
| Type | Description |
|---|---|
| JobTemplateSpec |
Schedule
The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
Declaration
public readonly string Schedule
Field Value
| Type | Description |
|---|---|
| System.String |
StartingDeadlineSeconds
Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.
Declaration
public readonly int StartingDeadlineSeconds
Field Value
| Type | Description |
|---|---|
| System.Int32 |
SuccessfulJobsHistoryLimit
The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.
Declaration
public readonly int SuccessfulJobsHistoryLimit
Field Value
| Type | Description |
|---|---|
| System.Int32 |
Suspend
This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.
Declaration
public readonly bool Suspend
Field Value
| Type | Description |
|---|---|
| System.Boolean |