Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindMatchingUntoleratedTaint (0.95 sec)

  1. 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)
  2. 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)
Back to top