Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for onExecute (0.19 sec)

  1. pkg/util/taints/taints_test.go

    			spec:        []string{"foo=ends.with.dot.:NoSchedule"},
    			expectedErr: true,
    		},
    		// The value range of taint effect is "NoSchedule", "PreferNoSchedule", "NoExecute"
    		{
    			name:        "invalid spec effect for adding taint",
    			spec:        []string{"foo=abc:invalid_effect"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec effect for deleting taint",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			}
    
    			// Trigger detach volume which requires verifying safe to detach step
    			// If forceDetatchTimeoutExpired is true, skip verifySafeToDetach check
    			// If the node has node.kubernetes.io/out-of-service taint with NoExecute effect, skip verifySafeToDetach check
    			logger.V(5).Info("Starting attacherDetacher.DetachVolume", "node", klog.KRef("", string(attachedVolume.NodeName)), "volumeName", attachedVolume.VolumeName)
    			if hasOutOfServiceTaint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.6.md

    * fluentd will tolerate all NoExecute Taints when run in gcp configuration. ([#45715](https://github.com/kubernetes/kubernetes/pull/45715), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    				},
    			},
    			old: core.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: core.PodSpec{
    					NodeName:    "node1",
    					Tolerations: []core.Toleration{{Key: "key1", Value: "value1", Operator: "Equal", Effect: "NoExecute", TolerationSeconds: &[]int64{10}[0]}},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

      * Add generic Toleration for NoExecute Taints to NodeProblemDetector, so that NPD can be scheduled to nodes with NoExecute taints by default. ([#45883](https://github.com/kubernetes/kubernetes/pull/45883), [@gmarek](https://github.com/gmarek))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    //     queue so that NoExecute taints can be added by the goroutine running the doNoExecuteTaintingPass function,
    //   - update the PodReady condition Pods according to the state of the Node Ready condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	if !fitsNodeName || !fitsNodeAffinity {
    		return false, false
    	}
    
    	if !fitsTaints {
    		// Scheduled daemon pods should continue running if they tolerate NoExecute taint.
    		_, hasUntoleratedTaint := v1helper.FindMatchingUntoleratedTaint(taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    			return t.Effect == v1.TaintEffectNoExecute
    		})
    		return false, !hasUntoleratedTaint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller_test.go

    	noScheduleTaints      = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}
    	noExecuteTaints       = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoExecute"}}
    )
    
    func nowPointer() *metav1.Time {
    	now := metav1.Now()
    	return &now
    }
    
    var (
    	nodeNotReady = []v1.Taint{{
    		Key:       v1.TaintNodeNotReady,
    		Effect:    v1.TaintEffectNoExecute,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	Value string
    	// Required. The effect of the taint on pods
    	// that do not tolerate the taint.
    	// Valid effects are NoSchedule, PreferNoSchedule and NoExecute.
    	Effect TaintEffect
    	// TimeAdded represents the time at which the taint was added.
    	// It is only written for NoExecute taints.
    	// +optional
    	TimeAdded *metav1.Time
    }
    
    // TaintEffect defines the effects of Taint
    type TaintEffect string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "properties": {
              "effect": {
                "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
                "type": "string"
              },
              "key": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
Back to top