Show / Hide Table of Contents

Class CronJobSpec

CronJobSpec describes how the job execution will look like and when it will actually run.

Inheritance
System.Object
CronJobSpec
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Outputs.Batch.V2Alpha1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class CronJobSpec

Fields

View Source

ConcurrencyPolicy

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
View Source

FailedJobsHistoryLimit

The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.

Declaration
public readonly int FailedJobsHistoryLimit
Field Value
Type Description
System.Int32
View Source

JobTemplate

Specifies the job that will be created when executing a CronJob.

Declaration
public readonly JobTemplateSpec JobTemplate
Field Value
Type Description
JobTemplateSpec
View Source

Schedule

The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.

Declaration
public readonly string Schedule
Field Value
Type Description
System.String
View Source

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
View Source

SuccessfulJobsHistoryLimit

The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.

Declaration
public readonly int SuccessfulJobsHistoryLimit
Field Value
Type Description
System.Int32
View Source

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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.