Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 191 for activeDeadlineSeconds (0.25 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

            controller: true
            kind: kindValue
            name: nameValue
            uid: uidValue
          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 3
          backoffLimit: 7
          backoffLimitPerIndex: 12
          completionMode: completionModeValue
          completions: 2
          managedBy: managedByValue
          manualSelector: true
          maxFailedIndexes: 13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

            controller: true
            kind: kindValue
            name: nameValue
            uid: uidValue
          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 3
          backoffLimit: 7
          backoffLimitPerIndex: 12
          completionMode: completionModeValue
          completions: 2
          managedBy: managedByValue
          manualSelector: true
          maxFailedIndexes: 13
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// update), this timer will effectively be stopped and reset when the Job is
    	// resumed again.
    	// +optional
    	ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" protobuf:"varint,3,opt,name=activeDeadlineSeconds"`
    
    	// Specifies the policy of handling failed pods. In particular, it allows to
    	// specify the set of actions and conditions which need to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // StartTime before the system will actively try to mark it failed and kill associated containers.
      // Value must be a positive integer.
      // +optional
      optional int64 activeDeadlineSeconds = 5;
    
      // NodeSelector is a selector which must be true for the carp to fit on a node.
      // Selector which must match a node's labels for the carp to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/volume/util/recyclerclient/recycler_client.go

    // RecycleVolumeByWatchingPodUntilCompletion is intended for use with volume
    // Recyclers. This function will save the given Pod to the API and watch it
    // until it completes, fails, or the pod's ActiveDeadlineSeconds is exceeded,
    // whichever comes first. An attempt to delete a recycler pod is always
    // attempted before returning.
    //
    // In case there is a pod with the same namespace+name already running, this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    		},
    		"activeDeadlineSeconds with backofflimit reach": {
    			parallelism:             1,
    			completions:             1,
    			activeDeadlineSeconds:   1,
    			startTime:               10,
    			failedPods:              1,
    			expectedFailed:          1,
    			expectedCondition:       batch.JobFailed,
    			expectedConditionReason: batch.JobReasonBackoffLimitExceeded,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	}
    	mungedPodSpec.InitContainers = newInitContainers
    	// munge spec.activeDeadlineSeconds
    	mungedPodSpec.ActiveDeadlineSeconds = nil
    	if oldPod.Spec.ActiveDeadlineSeconds != nil {
    		activeDeadlineSeconds := *oldPod.Spec.ActiveDeadlineSeconds
    		mungedPodSpec.ActiveDeadlineSeconds = &activeDeadlineSeconds
    	}
    	// munge spec.schedulingGates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

      // must be positive integer. If a Job is suspended (at creation or through an
      // update), this timer will effectively be stopped and reset when the Job is
      // resumed again.
      // +optional
      optional int64 activeDeadlineSeconds = 3;
    
      // Specifies the policy of handling failed pods. In particular, it allows to
      // specify the set of actions and conditions which need to be
      // satisfied to take the associated action.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    			},
    			err:  "spec.activeDeadlineSeconds",
    			test: "activeDeadlineSeconds change to larger positive",
    		},
    
    		{
    			new: core.Pod{
    				Spec: core.PodSpec{
    					ActiveDeadlineSeconds: &activeDeadlineSecondsNegative,
    				},
    			},
    			old:  core.Pod{},
    			err:  "spec.activeDeadlineSeconds",
    			test: "activeDeadlineSeconds change to negative from nil",
    		}, {
    			new: core.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*spec.Completions), fldPath.Child("completions"))...)
    	}
    	if spec.ActiveDeadlineSeconds != nil {
    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*spec.ActiveDeadlineSeconds), fldPath.Child("activeDeadlineSeconds"))...)
    	}
    	if spec.BackoffLimit != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top