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

Fix small typo in output for thresholds for low utilization

This commit is contained in:
Dane De Forest
2019-08-28 10:54:39 -07:00
committed by Dane De Forest
parent 9e28f0b362
commit cd4d09726c

View File

@@ -67,7 +67,7 @@ func LowNodeUtilization(ds *options.DeschedulerServer, strategy api.DeschedulerS
thresholds[v1.ResourceCPU], thresholds[v1.ResourceMemory], thresholds[v1.ResourcePods])
if len(lowNodes) == 0 {
glog.V(1).Infof("No node is underutilized, nothing to do here, you might tune your thersholds further")
glog.V(1).Infof("No node is underutilized, nothing to do here, you might tune your thresholds further")
return
}
glog.V(1).Infof("Total number of underutilized nodes: %v", len(lowNodes))