Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for uncountedTerminatedPods (0.47 sec)

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

    	// Old jobs might not be tracked using this field, in which case the field
    	// remains null.
    	// The structure is empty for finished jobs.
    	// +optional
    	UncountedTerminatedPods *UncountedTerminatedPods `json:"uncountedTerminatedPods,omitempty" protobuf:"bytes,8,opt,name=uncountedTerminatedPods"`
    
    	// The number of active pods which have a Ready condition and are not
    	// terminating (without a deletionTimestamp).
    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. staging/src/k8s.io/api/batch/v1/generated.proto

      //     counter.
      //
      // Old jobs might not be tracked using this field, in which case the field
      // remains null.
      // The structure is empty for finished jobs.
      // +optional
      optional UncountedTerminatedPods uncountedTerminatedPods = 8;
    
      // The number of active pods which have a Ready condition and are not
      // terminating (without a deletionTimestamp).
      optional int32 ready = 9;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. pkg/apis/batch/types.go

    	// remains null.
    	// The structure is empty for finished jobs.
    	// +optional
    	UncountedTerminatedPods *UncountedTerminatedPods
    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"uncountedTerminatedPods": "uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/strategy.go

    		isCompletionTimeChanged := !ptr.Equal(oldJob.Status.CompletionTime, newJob.Status.CompletionTime)
    		isUncountedTerminatedPodsChanged := !apiequality.Semantic.DeepEqual(oldJob.Status.UncountedTerminatedPods, newJob.Status.UncountedTerminatedPods)
    
    		return batchvalidation.JobStatusValidationOptions{
    			// We allow to decrease the counter for succeeded pods for jobs which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pkg/controller/job/backoff_utils_test.go

    	defaultTestTime := metav1.NewTime(time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC))
    	testCases := map[string]struct {
    		storeInitializer  func(*backoffStore)
    		uncounted         uncountedTerminatedPods
    		newSucceededPods  []metav1.Time
    		newFailedPods     []metav1.Time
    		wantBackoffRecord backoffRecord
    	}{
    		"Empty backoff store and one new failure": {
    			storeInitializer: emptyStoreInitializer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation_test.go

    				},
    				Status: batch.JobStatus{
    					UncountedTerminatedPods: &batch.UncountedTerminatedPods{
    						Succeeded: []types.UID{"a", "b", "c", "a", ""},
    						Failed:    []types.UID{"c", "d", "e", "d", ""},
    					},
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeDuplicate, Field: "status.uncountedTerminatedPods.succeeded[3]"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

        status: statusValue
        type: typeValue
      failed: 6
      failedIndexes: failedIndexesValue
      ready: 9
      startTime: "2002-01-01T01:01:01Z"
      succeeded: 5
      terminating: 11
      uncountedTerminatedPods:
        failed:
        - failedValue
        succeeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
        "ready": 9
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

        status: statusValue
        type: typeValue
      failed: 6
      failedIndexes: failedIndexesValue
      ready: 9
      startTime: "2002-01-01T01:01:01Z"
      succeeded: 5
      terminating: 11
      uncountedTerminatedPods:
        failed:
        - failedValue
        succeeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top