Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for maxFailedIndexes (0.46 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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