Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for uncountedTerminatedPods (0.46 sec)

  1. pkg/apis/batch/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.UncountedTerminatedPods)(nil), (*batch.UncountedTerminatedPods)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_UncountedTerminatedPods_To_batch_UncountedTerminatedPods(a.(*v1.UncountedTerminatedPods), b.(*batch.UncountedTerminatedPods), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/zz_generated.deepcopy.go

    	}
    	if in.FailedIndexes != nil {
    		in, out := &in.FailedIndexes, &out.FailedIndexes
    		*out = new(string)
    		**out = **in
    	}
    	if in.UncountedTerminatedPods != nil {
    		in, out := &in.UncountedTerminatedPods, &out.UncountedTerminatedPods
    		*out = new(UncountedTerminatedPods)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Ready != nil {
    		in, out := &in.Ready, &out.Ready
    		*out = new(int32)
    		**out = **in
    	}
    	return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/zz_generated.deepcopy.go

    	}
    	if in.FailedIndexes != nil {
    		in, out := &in.FailedIndexes, &out.FailedIndexes
    		*out = new(string)
    		**out = **in
    	}
    	if in.UncountedTerminatedPods != nil {
    		in, out := &in.UncountedTerminatedPods, &out.UncountedTerminatedPods
    		*out = new(UncountedTerminatedPods)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JobStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      //     counter.
      //
      // Old jobs might not be tracked using this field, in which case the field
      // remains null.
      // +optional
      optional UncountedTerminatedPods uncountedTerminatedPods = 8;
    
      // The number of pods which have a Ready condition.
      //
      // This field is beta-level. The job controller populates the field when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top