Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for activeDeadlineSeconds (0.48 sec)

  1. pkg/controller/volume/persistentvolume/config/types.go

    	// PV.
    	MaximumRetry int32
    	// minimumTimeoutNFS is the minimum ActiveDeadlineSeconds to use for an NFS Recycler
    	// pod.
    	MinimumTimeoutNFS int32
    	// podTemplateFilePathNFS is the file path to a pod definition used as a template for
    	// NFS persistent volume recycling
    	PodTemplateFilePathNFS string
    	// incrementTimeoutNFS is the increment of time added per Gi to ActiveDeadlineSeconds
    	// for an NFS scrubber pod.
    	IncrementTimeoutNFS int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.Int32Var(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.IncrementTimeoutNFS, "pv-recycler-increment-timeout-nfs", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.IncrementTimeoutNFS, "the increment of time added per Gi to ActiveDeadlineSeconds for an NFS scrubber pod")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/pods_test.go

    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					ActiveDeadlineSeconds: &activeDeadlineSeconds,
    				},
    			},
    			wantSelectors: []corev1.ScopedResourceSelectorRequirement{
    				{ScopeName: corev1.ResourceQuotaScopeTerminating},
    				{ScopeName: corev1.ResourceQuotaScopeBestEffort},
    			},
    		},
    		"OnlyTerminating": {
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					ActiveDeadlineSeconds: &activeDeadlineSeconds,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    	Completions             *int32                                    `json:"completions,omitempty"`
    	ActiveDeadlineSeconds   *int64                                    `json:"activeDeadlineSeconds,omitempty"`
    	PodFailurePolicy        *PodFailurePolicyApplyConfiguration       `json:"podFailurePolicy,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. hack/testdata/pod-with-precision.json

    {
      "apiVersion": "v1",
      "kind": "Pod",
      "metadata": {
        "name": "pod-with-precision"
      },
      "spec": {
        "activeDeadlineSeconds": 2147483647,
        "containers": [
          {
            "name": "kubernetes-pause",
            "image": "registry.k8s.io/pause:3.10"
          }
        ],
        "restartPolicy": "Never",
        "securityContext": {
          "supplementalGroups": [
            0,
            1000030003,
            2147483647
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 428 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	tcPod.Name = name
    	tcPod.Namespace = namespace
    	tcPod.UID = uid
    	tcPod.ResourceVersion = resourceVersion
    	if len(apiVersion) != 0 {
    		tcPod.APIVersion = apiVersion
    	}
    	if activeDeadlineSeconds != nil {
    		tcPod.Spec.ActiveDeadlineSeconds = activeDeadlineSeconds
    	}
    	if len(nodeName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/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"`
    	// 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: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/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"`
    	// NodeSelector is a selector which must be true for the pod to fit on a node.
    	// Selector which must match a node's labels for the pod to be scheduled on that node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/apis/apps/validation/validation.go

    	}
    	if spec.Template.Spec.ActiveDeadlineSeconds != nil {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("template", "spec", "activeDeadlineSeconds"), "activeDeadlineSeconds in StatefulSet is not Supported"))
    	}
    
    	return allErrs
    }
    
    // ValidateStatefulSet validates a StatefulSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/apis/batch/zz_generated.deepcopy.go

    	}
    	if in.SuccessPolicy != nil {
    		in, out := &in.SuccessPolicy, &out.SuccessPolicy
    		*out = new(SuccessPolicy)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.BackoffLimit != nil {
    		in, out := &in.BackoffLimit, &out.BackoffLimit
    		*out = new(int32)
    		**out = **in
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top