Make Qos naming consistent across the codebase

This commit is contained in:
Buddha Prakash
2016-06-26 16:08:18 -07:00
parent ff7c280200
commit 4acb64f8bd
9 changed files with 22 additions and 22 deletions

View File

@@ -1020,7 +1020,7 @@ func tolerationsToleratesTaints(tolerations []api.Toleration, taints []api.Taint
// Determine if a pod is scheduled with best-effort QoS
func isPodBestEffort(pod *api.Pod) bool {
return qos.GetPodQos(pod) == qos.BestEffort
return qos.GetPodQOS(pod) == qos.BestEffort
}
// CheckNodeMemoryPressurePredicate checks if a pod can be scheduled on a node