Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for activeDeadlineSeconds (0.63 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. 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)
  5. 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)
  6. pkg/controller/job/job_controller.go

    	if util.IsJobFinished(curJob) {
    		jm.cleanupPodFinalizers(curJob)
    	}
    
    	// check if need to add a new rsync for ActiveDeadlineSeconds
    	if curJob.Status.StartTime != nil {
    		curADS := curJob.Spec.ActiveDeadlineSeconds
    		if curADS == nil {
    			return
    		}
    		oldADS := oldJob.Spec.ActiveDeadlineSeconds
    		if oldADS == nil || *oldADS != *curADS {
    			passed := jm.clock.Since(curJob.Status.StartTime.Time)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. pkg/volume/plugins.go

    	// RecyclerMinimumTimeout is the minimum amount of time in seconds for the
    	// recycler pod's ActiveDeadlineSeconds attribute. Added to the minimum
    	// timeout is the increment per Gi of capacity.
    	RecyclerMinimumTimeout int
    
    	// RecyclerTimeoutIncrement is the number of seconds added to the recycler
    	// pod's ActiveDeadlineSeconds for each Gi of capacity in the persistent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/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: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "parallelism": 1,
        "completions": 2,
        "activeDeadlineSeconds": 3,
        "podFailurePolicy": {
          "rules": [
            {
              "action": "actionValue",
              "onExitCodes": {
                "containerName": "containerNameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

                "fieldsV1": {},
                "subresource": "subresourceValue"
              }
            ]
          },
          "spec": {
            "parallelism": 1,
            "completions": 2,
            "activeDeadlineSeconds": 3,
            "podFailurePolicy": {
              "rules": [
                {
                  "action": "actionValue",
                  "onExitCodes": {
                    "containerName": "containerNameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
Back to top