Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 191 for activeDeadlineSeconds (0.29 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

            controller: true
            kind: kindValue
            name: nameValue
            uid: uidValue
          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 5
          affinity:
            nodeAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

            controller: true
            kind: kindValue
            name: nameValue
            uid: uidValue
          resourceVersion: resourceVersionValue
          selfLink: selfLinkValue
          uid: uidValue
        spec:
          activeDeadlineSeconds: 5
          affinity:
            nodeAffinity:
              preferredDuringSchedulingIgnoredDuringExecution:
              - preference:
                  matchExpressions:
                  - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    					Parallelism:             pointer.Int32(5),
    					ActiveDeadlineSeconds:   pointer.Int64(2),
    					TTLSecondsAfterFinished: pointer.Int32(1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Parallelism = pointer.Int32(2)
    				job.Spec.ActiveDeadlineSeconds = pointer.Int64(3)
    				job.Spec.TTLSecondsAfterFinished = pointer.Int32(2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					CreationTimestamp: metav1.Time{Time: scheduledTime},
    					Labels:            map[string]string{"a": "b"},
    				},
    				Spec: batchv1.JobSpec{
    					ActiveDeadlineSeconds: &one,
    					ManualSelector:        &no,
    					Template: v1.PodTemplateSpec{
    						ObjectMeta: metav1.ObjectMeta{
    							Labels: map[string]string{
    								"foo": "bar",
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/resourcequota/admission_test.go

    	// create a pod that has an active deadline
    	newPod := validPod("allowed-pod", 1, getResourceRequirements(getResourceList("100m", "2Gi"), getResourceList("", "")))
    	activeDeadlineSeconds := int64(30)
    	newPod.Spec.ActiveDeadlineSeconds = &activeDeadlineSeconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Labels: validLabels,
    			},
    			Spec: api.PodSpec{
    				RestartPolicy:         api.RestartPolicyAlways,
    				DNSPolicy:             api.DNSClusterFirst,
    				ActiveDeadlineSeconds: &invalidTime,
    			},
    		},
    	}
    
    	const enableStatefulSetAutoDeletePVC = "[enable StatefulSetAutoDeletePVC]"
    
    	type testCase struct {
    		name string
    		set  apps.StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.TerminationGracePeriodSeconds, &out.TerminationGracePeriodSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.TerminationGracePeriodSeconds, &out.TerminationGracePeriodSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// StartTime before the system will actively try to mark it failed and kill associated containers.
    	// Value must be a positive integer.
    	// +optional
    	ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty" protobuf:"varint,5,opt,name=activeDeadlineSeconds"`
    	// Set DNS policy for the pod.
    	// Defaults to "ClusterFirst".
    	// Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    type ResourceQuotaScope string
    
    // These are valid values for resource quota spec
    const (
    	// Match all pod objects where spec.activeDeadlineSeconds >=0
    	ResourceQuotaScopeTerminating ResourceQuotaScope = "Terminating"
    	// Match all pod objects where spec.activeDeadlineSeconds is nil
    	ResourceQuotaScopeNotTerminating ResourceQuotaScope = "NotTerminating"
    	// Match all pod objects that have best effort quality of service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top