Skip to content

Commit 35f4eba

Browse files
Support of the namespaceLabelSelector in DefaultEvictor plugin
1 parent b819e26 commit 35f4eba

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

pkg/framework/plugins/defaultevictor/defaultevictor.go

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919
"errors"
2020
"fmt"
2121
"time"
22-
"strings"
2322

2423
v1 "k8s.io/api/core/v1"
2524
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

pkg/framework/plugins/defaultevictor/defaultevictor_test.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ package defaultevictor
1515

1616
import (
1717
"context"
18+
"fmt"
1819
"testing"
20+
"time"
1921

2022
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2123

@@ -49,6 +51,13 @@ type testCase struct {
4951
result bool
5052
}
5153

54+
var namespace = "test"
55+
var namespaceSelector = &metav1.LabelSelector{
56+
MatchLabels: map[string]string{
57+
"kubernetes.io/metadata.name": namespace,
58+
},
59+
}
60+
5261
func TestDefaultEvictorPreEvictionFilter(t *testing.T) {
5362
n1 := test.BuildTestNode("node1", 1000, 2000, 13, nil)
5463

@@ -58,13 +67,6 @@ func TestDefaultEvictorPreEvictionFilter(t *testing.T) {
5867
nodeLabelKey := "datacenter"
5968
nodeLabelValue := "east"
6069

61-
namespace := "test"
62-
namespaceSelector := &metav1.LabelSelector{
63-
MatchLabels: map[string]string{
64-
"kubernetes.io/metadata.name": namespace,
65-
},
66-
}
67-
6870
testCases := []testCase{
6971
{
7072
description: "Pod with no tolerations running on normal node, all other nodes tainted",

0 commit comments

Comments
 (0)