Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for TolerationSeconds (0.24 sec)

  1. pkg/apis/core/validation/validation.go

    		found := false
    		oldTolerationClone := old.DeepCopy()
    		for _, newToleration := range newTolerations {
    			// assign to our clone before doing a deep equal so we can allow tolerationseconds to change.
    			oldTolerationClone.TolerationSeconds = newToleration.TolerationSeconds // +k8s:verify-mutation:reason=clone
    			if reflect.DeepEqual(*oldTolerationClone, newToleration) {
    				found = true
    				break
    			}
    		}
    		if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.6.md

    pods from nodes by default, which enables use cases like dedicated nodes and reserving nodes with special features for pods that need those features. We've also added a `NoExecute` taint type that evicts already-running pods, and an associated `tolerationSeconds` field to tolerations to delay the eviction for a specified amount of time. As before, taints are created using `kubectl taint` (but internally they are now represented as a field `taints` in the NodeSpec rather than using the `scheduler.alp...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Key = in.Key
    	out.Operator = core.TolerationOperator(in.Operator)
    	out.Value = in.Value
    	out.Effect = core.TaintEffect(in.Effect)
    	out.TolerationSeconds = (*int64)(unsafe.Pointer(in.TolerationSeconds))
    	return nil
    }
    
    // Convert_v1_Toleration_To_core_Toleration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// TolerationSeconds represents the period of time the toleration (which must be
    	// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    	// it is not set, which means tolerate the taint forever (do not evict). Zero and
    	// negative values will be treated as 0 (evict immediately) by the system.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
      // +optional
      optional string effect = 4;
    
      // TolerationSeconds represents the period of time the toleration (which must be
      // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// +optional
    	Effect TaintEffect
    	// TolerationSeconds represents the period of time the toleration (which must be
    	// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    	// it is not set, which means tolerate the taint forever (do not evict). Zero and
    	// negative values will be treated as 0 (evict immediately) by the system.
    	// +optional
    	TolerationSeconds *int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"effect":            "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
      // +optional
      optional string effect = 4;
    
      // TolerationSeconds represents the period of time the toleration (which must be
      // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "tolerationSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.17.md

    - Fixes a bug evicting pods after a taint with a limited tolerationSeconds toleration is removed from a node ([#93722](https://github.com/kubernetes/kubernetes/pull/93722), [@liggitt](https://github.com/liggitt)) [SIG Apps and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
Back to top