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

Merge pull request #688 from babygoat/evict-failed-without-ownerrefs

feat: support eviction of failed bare pods
This commit is contained in:
Kubernetes Prow Robot
2022-01-11 12:31:15 -08:00
committed by GitHub
22 changed files with 93 additions and 7 deletions

View File

@@ -150,6 +150,7 @@ func TestRemoveDuplicates(t *testing.T) {
true,
false,
false,
false,
)
t.Log("Running DeschedulerStrategy strategy")

View File

@@ -202,6 +202,7 @@ func runPodLifetimeStrategy(
false,
evictCritical,
false,
false,
),
getPodsAssignedToNode,
)
@@ -1339,5 +1340,6 @@ func initPodEvictorOrFail(t *testing.T, clientSet clientset.Interface, nodes []*
true,
false,
false,
false,
)
}

View File

@@ -140,6 +140,7 @@ func TestTooManyRestarts(t *testing.T) {
true,
false,
false,
false,
)
// Run RemovePodsHavingTooManyRestarts strategy
t.Log("Running RemovePodsHavingTooManyRestarts strategy")