Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for completion_mode (0.23 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode `json:"completionMode,omitempty" protobuf:"bytes,9,opt,name=completionMode,casttype=CompletionMode"`
    
    	// suspend specifies whether the Job controller should create Pods or not. If
    	// a Job is created with suspend set to true, no Pods are created by the Job
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/types.go

    	// +optional
    	Spec JobSpec
    }
    
    // CompletionMode specifies how Pod completions of a Job are tracked.
    type CompletionMode string
    
    const (
    	// NonIndexedCompletion is a Job completion mode. In this mode, the Job is
    	// considered complete when there have been .spec.completions
    	// successfully completed Pods. Pod completions are homologous to each other.
    	NonIndexedCompletion CompletionMode = "NonIndexed"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"completionMode":          "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/generated.proto

      // index before marking this index as failed. When enabled the number of
      // failures per index is kept in the pod's
      // batch.kubernetes.io/job-index-failure-count annotation. It can only
      // be set when Job's completionMode=Indexed, and the Pod's restart
      // policy is Never. The field is immutable.
      // This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
      // feature gate is enabled (enabled by default).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      activeDeadlineSeconds: 3
      backoffLimit: 7
      backoffLimitPerIndex: 12
      completionMode: completionModeValue
      completions: 2
      managedBy: managedByValue
      manualSelector: true
      maxFailedIndexes: 13
      parallelism: 1
      podFailurePolicy:
        rules:
        - action: actionValue
          onExitCodes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 3
          backoffLimit: 7
          backoffLimitPerIndex: 12
          completionMode: completionModeValue
          completions: 2
          managedBy: managedByValue
          manualSelector: true
          maxFailedIndexes: 13
          parallelism: 1
          podFailurePolicy:
            rules:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 3
          backoffLimit: 7
          backoffLimitPerIndex: 12
          completionMode: completionModeValue
          completions: 2
          managedBy: managedByValue
          manualSelector: true
          maxFailedIndexes: 13
          parallelism: 1
          podFailurePolicy:
            rules:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top