1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Merge pull request #44 from containscafeine/log-underutilized-and-target-nodes

Add log messages for target, underutilized nodes
This commit is contained in:
RaviSantosh Gudimetla
2017-11-26 11:55:26 -05:00
committed by GitHub

View File

@@ -115,8 +115,10 @@ func classifyNodes(npm NodePodsMap, thresholds api.ResourceThresholds, targetThr
glog.V(1).Infof("Node %#v usage: %#v", node.Name, usage)
if IsNodeWithLowUtilization(usage, thresholds) {
glog.V(1).Infof("Identified underutilized node: %v", node.ObjectMeta.Name)
lowNodes = append(lowNodes, nuMap)
} else if IsNodeAboveTargetUtilization(usage, targetThresholds) {
glog.V(1).Infof("Identified target node: %v", node.ObjectMeta.Name)
targetNodes = append(targetNodes, nuMap)
} else {
// Seems we don't need to collect them?