Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MaxFailedIndexes (0.29 sec)

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

    	// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
    	// feature gate is enabled (enabled by default).
    	// +optional
    	MaxFailedIndexes *int32 `json:"maxFailedIndexes,omitempty" protobuf:"varint,13,opt,name=maxFailedIndexes"`
    
    	// TODO enabled it when https://github.com/kubernetes/kubernetes/issues/28486 has been fixed
    	// Optional number of failed pods to retain.
    	// +optional
    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/controller/job/job_controller.go

    		if hasBackoffLimitPerIndex(&job) {
    			jobCtx.failedIndexes = calculateFailedIndexes(logger, &job, pods)
    			if jobCtx.finishedCondition == nil {
    				if job.Spec.MaxFailedIndexes != nil && jobCtx.failedIndexes.total() > int(*job.Spec.MaxFailedIndexes) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    					BackoffLimit:         ptr.To[int32](math.MaxInt32),
    					CompletionMode:       completionModePtr(batch.IndexedCompletion),
    					BackoffLimitPerIndex: ptr.To[int32](1),
    					MaxFailedIndexes:     ptr.To[int32](1),
    				},
    			},
    			pods: []v1.Pod{
    				*buildPod().uid("a").index("0").phase(v1.PodFailed).indexFailureCount("1").trackingFinalizer().Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "maxFailedIndexes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"maxFailedIndexes": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "type": "boolean"
            },
            "maxFailedIndexes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top