Revert "Add kubelet awareness to taint tolerant match caculator."

This commit is contained in:
David Oppenheimer
2016-10-07 12:10:55 -07:00
committed by GitHub
parent 21188cadeb
commit cd4e08e7ec
14 changed files with 37 additions and 295 deletions

View File

@@ -34,7 +34,7 @@ func countIntolerableTaintsPreferNoSchedule(taints []api.Taint, tolerations []ap
continue
}
if tolerable := api.TaintToleratedByTolerations(taint, tolerations); !tolerable {
if !api.TaintToleratedByTolerations(taint, tolerations) {
intolerableTaints++
}
}