-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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: Remove duplicate test cases from K8sServicesTest #11523
Conversation
This commit removes two test cases ("TC + DR + {DSR,SNAT}") as they duplicated by the tests in "Tests with direct routing". Signed-off-by: Martynas Pumputis <[email protected]>
test-me-please |
retest-net-next |
@@ -1252,6 +1253,7 @@ var _ = Describe("K8sServicesTest", func() { | |||
}) | |||
|
|||
testDSR(64001) | |||
testNodePort(true, false, false) // no need to test from outside, as testDSR did it |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The previous tests also cleared the CT tables on the node after testNodePort()
, is that handled here somehow or not necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I can see, it's not necessary. I haven't seen a failure due to potentially stale CT entries.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good enough for me, we can keep an eye out in case this concern is warranted.
This commit removes two test cases ("TC + DR + {DSR,SNAT}") as they are duplicated by the tests in "Tests with direct routing".