mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 05:14:13 +01:00
165 lines
5.6 KiB
Go
165 lines
5.6 KiB
Go
/*
|
|
Copyright 2021 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package nodeutilization
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
"k8s.io/klog/v2"
|
|
"sigs.k8s.io/descheduler/pkg/api"
|
|
"sigs.k8s.io/descheduler/pkg/descheduler/evictions"
|
|
nodeutil "sigs.k8s.io/descheduler/pkg/descheduler/node"
|
|
"sigs.k8s.io/descheduler/pkg/utils"
|
|
)
|
|
|
|
// HighNodeUtilization evicts pods from under utilized nodes so that scheduler can schedule according to its strategy.
|
|
// Note that CPU/Memory requests are used to calculate nodes' utilization and not the actual resource usage.
|
|
func HighNodeUtilization(ctx context.Context, client clientset.Interface, strategy api.DeschedulerStrategy, nodes []*v1.Node, podEvictor *evictions.PodEvictor) {
|
|
if err := validateNodeUtilizationParams(strategy.Params); err != nil {
|
|
klog.ErrorS(err, "Invalid HighNodeUtilization parameters")
|
|
return
|
|
}
|
|
|
|
nodeFit := false
|
|
if strategy.Params != nil {
|
|
nodeFit = strategy.Params.NodeFit
|
|
}
|
|
|
|
thresholdPriority, err := utils.GetPriorityFromStrategyParams(ctx, client, strategy.Params)
|
|
if err != nil {
|
|
klog.ErrorS(err, "Failed to get threshold priority from strategy's params")
|
|
return
|
|
}
|
|
|
|
thresholds := strategy.Params.NodeResourceUtilizationThresholds.Thresholds
|
|
targetThresholds := strategy.Params.NodeResourceUtilizationThresholds.TargetThresholds
|
|
if err := validateHighUtilizationStrategyConfig(thresholds, targetThresholds); err != nil {
|
|
klog.ErrorS(err, "HighNodeUtilization config is not valid")
|
|
return
|
|
}
|
|
targetThresholds = make(api.ResourceThresholds)
|
|
|
|
setDefaultForThresholds(thresholds, targetThresholds)
|
|
resourceNames := getResourceNames(targetThresholds)
|
|
|
|
sourceNodes, highNodes := classifyNodes(
|
|
getNodeUsage(ctx, client, nodes, thresholds, targetThresholds, resourceNames),
|
|
func(node *v1.Node, usage NodeUsage) bool {
|
|
return isNodeWithLowUtilization(usage)
|
|
},
|
|
func(node *v1.Node, usage NodeUsage) bool {
|
|
if nodeutil.IsNodeUnschedulable(node) {
|
|
klog.V(2).InfoS("Node is unschedulable", "node", klog.KObj(node))
|
|
return false
|
|
}
|
|
return !isNodeWithLowUtilization(usage)
|
|
})
|
|
|
|
// log message in one line
|
|
keysAndValues := []interface{}{
|
|
"CPU", thresholds[v1.ResourceCPU],
|
|
"Mem", thresholds[v1.ResourceMemory],
|
|
"Pods", thresholds[v1.ResourcePods],
|
|
}
|
|
for name := range thresholds {
|
|
if !isBasicResource(name) {
|
|
keysAndValues = append(keysAndValues, string(name), int64(thresholds[name]))
|
|
}
|
|
}
|
|
|
|
klog.V(1).InfoS("Criteria for a node below target utilization", keysAndValues...)
|
|
klog.V(1).InfoS("Number of underutilized nodes", "totalNumber", len(sourceNodes))
|
|
|
|
if len(sourceNodes) == 0 {
|
|
klog.V(1).InfoS("No node is underutilized, nothing to do here, you might tune your thresholds further")
|
|
return
|
|
}
|
|
if len(sourceNodes) <= strategy.Params.NodeResourceUtilizationThresholds.NumberOfNodes {
|
|
klog.V(1).InfoS("Number of nodes underutilized is less or equal than NumberOfNodes, nothing to do here", "underutilizedNodes", len(sourceNodes), "numberOfNodes", strategy.Params.NodeResourceUtilizationThresholds.NumberOfNodes)
|
|
return
|
|
}
|
|
if len(sourceNodes) == len(nodes) {
|
|
klog.V(1).InfoS("All nodes are underutilized, nothing to do here")
|
|
return
|
|
}
|
|
if len(highNodes) == 0 {
|
|
klog.V(1).InfoS("No node is available to schedule the pods, nothing to do here")
|
|
return
|
|
}
|
|
|
|
evictable := podEvictor.Evictable(evictions.WithPriorityThreshold(thresholdPriority), evictions.WithNodeFit(nodeFit))
|
|
|
|
// stop if the total available usage has dropped to zero - no more pods can be scheduled
|
|
continueEvictionCond := func(nodeUsage NodeUsage, totalAvailableUsage map[v1.ResourceName]*resource.Quantity) bool {
|
|
for name := range totalAvailableUsage {
|
|
if totalAvailableUsage[name].CmpInt64(0) < 1 {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
evictPodsFromSourceNodes(
|
|
ctx,
|
|
sourceNodes,
|
|
highNodes,
|
|
podEvictor,
|
|
evictable.IsEvictable,
|
|
resourceNames,
|
|
"HighNodeUtilization",
|
|
continueEvictionCond)
|
|
|
|
}
|
|
|
|
func validateHighUtilizationStrategyConfig(thresholds, targetThresholds api.ResourceThresholds) error {
|
|
if targetThresholds != nil {
|
|
return fmt.Errorf("targetThresholds is not applicable for HighNodeUtilization")
|
|
}
|
|
if err := validateThresholds(thresholds); err != nil {
|
|
return fmt.Errorf("thresholds config is not valid: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setDefaultForThresholds(thresholds, targetThresholds api.ResourceThresholds) {
|
|
// check if Pods/CPU/Mem are set, if not, set them to 100
|
|
if _, ok := thresholds[v1.ResourcePods]; !ok {
|
|
thresholds[v1.ResourcePods] = MaxResourcePercentage
|
|
}
|
|
if _, ok := thresholds[v1.ResourceCPU]; !ok {
|
|
thresholds[v1.ResourceCPU] = MaxResourcePercentage
|
|
}
|
|
if _, ok := thresholds[v1.ResourceMemory]; !ok {
|
|
thresholds[v1.ResourceMemory] = MaxResourcePercentage
|
|
}
|
|
|
|
// Default targetThreshold resource values to 100
|
|
targetThresholds[v1.ResourcePods] = MaxResourcePercentage
|
|
targetThresholds[v1.ResourceCPU] = MaxResourcePercentage
|
|
targetThresholds[v1.ResourceMemory] = MaxResourcePercentage
|
|
|
|
for name := range thresholds {
|
|
if !isBasicResource(name) {
|
|
targetThresholds[name] = MaxResourcePercentage
|
|
}
|
|
}
|
|
}
|