mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 05:14:13 +01:00
End users should be able to see the detailed error from the EvictPod method when it fails. Updates all strategies to log the error. The PodLifeTime strategy already logs this error.
64 lines
2.2 KiB
Go
64 lines
2.2 KiB
Go
/*
|
|
Copyright 2017 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 strategies
|
|
|
|
import (
|
|
"context"
|
|
|
|
v1 "k8s.io/api/core/v1"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
"k8s.io/klog"
|
|
|
|
"sigs.k8s.io/descheduler/pkg/api"
|
|
"sigs.k8s.io/descheduler/pkg/descheduler/evictions"
|
|
nodeutil "sigs.k8s.io/descheduler/pkg/descheduler/node"
|
|
podutil "sigs.k8s.io/descheduler/pkg/descheduler/pod"
|
|
)
|
|
|
|
func RemovePodsViolatingNodeAffinity(ctx context.Context, client clientset.Interface, strategy api.DeschedulerStrategy, nodes []*v1.Node, evictLocalStoragePods bool, podEvictor *evictions.PodEvictor) {
|
|
for _, nodeAffinity := range strategy.Params.NodeAffinityType {
|
|
klog.V(2).Infof("Executing for nodeAffinityType: %v", nodeAffinity)
|
|
|
|
switch nodeAffinity {
|
|
case "requiredDuringSchedulingIgnoredDuringExecution":
|
|
for _, node := range nodes {
|
|
klog.V(1).Infof("Processing node: %#v\n", node.Name)
|
|
|
|
pods, err := podutil.ListEvictablePodsOnNode(ctx, client, node, evictLocalStoragePods)
|
|
if err != nil {
|
|
klog.Errorf("failed to get pods from %v: %v", node.Name, err)
|
|
}
|
|
|
|
for _, pod := range pods {
|
|
if pod.Spec.Affinity != nil && pod.Spec.Affinity.NodeAffinity != nil && pod.Spec.Affinity.NodeAffinity.RequiredDuringSchedulingIgnoredDuringExecution != nil {
|
|
if !nodeutil.PodFitsCurrentNode(pod, node) && nodeutil.PodFitsAnyNode(pod, nodes) {
|
|
klog.V(1).Infof("Evicting pod: %v", pod.Name)
|
|
if _, err := podEvictor.EvictPod(ctx, pod, node); err != nil {
|
|
klog.Errorf("Error evicting pod: (%#v)", err)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
default:
|
|
klog.Errorf("invalid nodeAffinityType: %v", nodeAffinity)
|
|
}
|
|
}
|
|
klog.V(1).Infof("Evicted %v pods", podEvictor.TotalEvicted())
|
|
}
|