Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FindMatchingUntoleratedTaint (0.26 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    		return framework.Queue, err
    	}
    
    	wasUntolerated := true
    	if originalNode != nil {
    		_, wasUntolerated = v1helper.FindMatchingUntoleratedTaint(originalNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	}
    
    	_, isUntolerated := v1helper.FindMatchingUntoleratedTaint(modifiedNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    
    	if wasUntolerated && !isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    		if match, _ := require.Match(node); !match {
    			return false
    		}
    	}
    
    	if tsc.NodeTaintsPolicy == v1.NodeInclusionPolicyHonor {
    		if _, untolerated := v1helper.FindMatchingUntoleratedTaint(node.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc()); untolerated {
    			return false
    		}
    	}
    	return true
    }
    
    // buildDefaultConstraints builds the constraints for a pod using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/predicate.go

    		} else {
    			reasons = append(reasons, &PredicateFailureError{r.Name, r.Reason})
    		}
    	}
    
    	// Check taint/toleration except for static pods
    	if !types.IsStaticPod(pod) {
    		_, isUntolerated := corev1.FindMatchingUntoleratedTaint(nodeInfo.Node().Spec.Taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    			// Kubelet is only interested in the NoExecute taint.
    			return t.Effect == v1.TaintEffectNoExecute
    		})
    		if isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers.go

    	return func(pod *v1.Pod) bool {
    		admissionResults := AdmissionCheck(pod, nodeInfo, false)
    		if len(admissionResults) != 0 {
    			return false
    		}
    		_, isUntolerated := corev1helpers.FindMatchingUntoleratedTaint(nodeInfo.Node().Spec.Taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    			return t.Effect == v1.TaintEffectNoSchedule
    		})
    		return !isUntolerated
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    		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
    	}
    
    	return true, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top