Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FindMatchingUntoleratedTaint (0.17 sec)

  1. 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