Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for activeDeadlineSeconds (0.52 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/kubelet/active_deadline_test.go

    	exceededActiveDeadlineSeconds := int64(30)
    	pods[0].Status.StartTime = &startTime
    	pods[0].Spec.ActiveDeadlineSeconds = &exceededActiveDeadlineSeconds
    
    	// this pod has not exceeded its active deadline
    	notYetActiveDeadlineSeconds := int64(120)
    	pods[1].Status.StartTime = &startTime
    	pods[1].Spec.ActiveDeadlineSeconds = &notYetActiveDeadlineSeconds
    
    	// this pod has no deadline
    	pods[2].Status.StartTime = &startTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 08 09:06:42 UTC 2022
    - 4.5K 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/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)
  7. 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)
  8. pkg/volume/nfs/nfs.go

    	}
    
    	pod := plugin.config.RecyclerPodTemplate
    	timeout := util.CalculateTimeoutForVolume(plugin.config.RecyclerMinimumTimeout, plugin.config.RecyclerTimeoutIncrement, spec.PersistentVolume)
    	// overrides
    	pod.Spec.ActiveDeadlineSeconds = &timeout
    	pod.GenerateName = "pv-recycler-nfs-"
    	pod.Spec.Volumes[0].VolumeSource = v1.VolumeSource{
    		NFS: &v1.NFSVolumeSource{
    			Server: spec.PersistentVolume.Spec.NFS.Server,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/example/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 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: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top