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

refactor(TestPodAntiAffinity): ensure p8 is created only through apply argument

This commit is contained in:
Jan Chaloupka
2025-12-15 13:22:35 +01:00
parent 5ad695166a
commit 116385718f

View File

@@ -99,7 +99,11 @@ func TestPodAntiAffinity(t *testing.T) {
test.SetPodAntiAffinity(pod, "foo", "bar")
test.SetPodPriority(pod, 0)
})
p8 := buildTestPodForNode1("p8", nil)
p8 := buildTestPodForNode1("p8", func(pod *v1.Pod) {
pod.Spec.NodeSelector = map[string]string{
"datacenter": "west",
}
})
p9 := buildTestPodForNode1("p9", nil)
p10 := buildTestPodForNode1("p10", nil)
p11 := buildTestPod("p11", nodeName5, nil)
@@ -120,11 +124,6 @@ func TestPodAntiAffinity(t *testing.T) {
test.SetPodAntiAffinity(p9, "foo", "bar")
test.SetPodAntiAffinity(p10, "foo", "bar")
// Set pod node selectors
p8.Spec.NodeSelector = map[string]string{
"datacenter": "west",
}
var uint1 uint = 1
var uint3 uint = 3