Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for maxFailedIndexes (0.36 sec)

  1. staging/src/k8s.io/api/batch/v1/generated.proto

      // This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
      // feature gate is enabled (enabled by default).
      // +optional
      optional int32 maxFailedIndexes = 13;
    
      // A label query over pods that should match the pod count.
      // Normally, the system sets this field for you.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K 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/apis/batch/types.go

    	// less than or equal to 10^4 when is completions greater than 10^5.
    	// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
    	// feature gate is enabled (enabled by default).
    	// +optional
    	MaxFailedIndexes *int32
    
    	// TODO enabled it when https://github.com/kubernetes/kubernetes/issues/28486 has been fixed
    	// Optional number of failed pods to retain.
    	// +optional
    	// FailedPodsLimit *int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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