Skip to content

Commit

Permalink
Merge pull request #2128 from vivekbagade/upcoming-nodes
Browse files Browse the repository at this point in the history
Potential performance improvement in bin packing unschedulable pods
  • Loading branch information
k8s-ci-robot committed Jun 19, 2019
2 parents 4eaea15 + 0a75333 commit 2da9e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster-autoscaler/core/filter_out_schedulable.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func filterOutSchedulableByPacking(unschedulableCandidates []*apiv1.Pod, nodes [
}
klog.V(4).Infof("Pod %s marked as unschedulable can be scheduled on %s node %s. Ignoring"+
" in scale up.", pod.Name, nodeType, nodeName)
nodeNameToNodeInfo[nodeName] = schedulerutil.NodeWithPod(nodeNameToNodeInfo[nodeName], pod)
nodeNameToNodeInfo[nodeName].AddPod(pod)
}
}

Expand Down

0 comments on commit 2da9e48

Please sign in to comment.