Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: use legacy taint logic for disruption #4896

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/suites/alpha/drift/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ var _ = Describe("Drift", Label("AWS"), func() {
}).Should(Succeed())

// Expect nodes To get cordoned
cordonedNodes := env.EventuallyExpectCordonedNodeCount("==", 1)
cordonedNodes := env.EventuallyExpectCordonedNodeCountLegacy("==", 1)

// Drift should fail and the original node should be uncordoned
// TODO: reduce timeouts when deprovisioning waits are factored out
Expand Down Expand Up @@ -435,7 +435,7 @@ var _ = Describe("Drift", Label("AWS"), func() {
}).Should(Succeed())

// Expect nodes To be cordoned
cordonedNodes := env.EventuallyExpectCordonedNodeCount("==", 1)
cordonedNodes := env.EventuallyExpectCordonedNodeCountLegacy("==", 1)

// Drift should fail and original node should be uncordoned
// TODO: reduce timeouts when deprovisioning waits are factored outr
Expand Down
4 changes: 2 additions & 2 deletions test/suites/alpha/expiration/expiration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ var _ = Describe("Expiration", func() {
}).Should(Succeed())

// Expect nodes To get cordoned
cordonedNodes := env.EventuallyExpectCordonedNodeCount("==", 1)
cordonedNodes := env.EventuallyExpectCordonedNodeCountLegacy("==", 1)

// Expire should fail and the original node should be uncordoned
// TODO: reduce timeouts when deprovisioning waits are factored out
Expand Down Expand Up @@ -306,7 +306,7 @@ var _ = Describe("Expiration", func() {
}).Should(Succeed())

// Expect nodes To be cordoned
cordonedNodes := env.EventuallyExpectCordonedNodeCount("==", 1)
cordonedNodes := env.EventuallyExpectCordonedNodeCountLegacy("==", 1)

// Expire should fail and original node should be uncordoned and no machines should be removed
// TODO: reduce timeouts when deprovisioning waits are factored out
Expand Down