glog.V(10).Infof("Cannot schedule Pod %+v, because Node %+v is full, running %v out of %v Pods.",podName(pod),node,len(existingPods),info.Status.Capacity.Pods().Value())
glog.V(10).Infof("Cannot schedule Pod %+v, because Node %+v is full, running %v out of %v Pods.",podName(pod),node,len(existingPods),allocatable.Pods().Value())
glog.V(10).Infof("Cannot schedule Pod %+v, because Node %v does not have sufficient Memory",podName(pod),node)
glog.V(10).Infof("Cannot schedule Pod %+v, because Node %v does not have sufficient Memory",podName(pod),node)
returnfalse,ErrInsufficientFreeMemory
returnfalse,ErrInsufficientFreeMemory
}
}
glog.V(10).Infof("Schedule Pod %+v on Node %+v is allowed, Node is running only %v out of %v Pods.",podName(pod),node,len(pods)-1,info.Status.Capacity.Pods().Value())
glog.V(10).Infof("Schedule Pod %+v on Node %+v is allowed, Node is running only %v out of %v Pods.",podName(pod),node,len(pods)-1,allocatable.Pods().Value())