-
Notifications
You must be signed in to change notification settings - Fork 811
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
Fixes for flaky e2e tests. #504
Fixes for flaky e2e tests. #504
Conversation
Build Failed 😱 Build Id: fe57c6b3-c5e8-4359-b3a8-e79579d7f7bf Build Logs
|
4f20388
to
0dcf8ac
Compare
Build Succeeded 👏 Build Id: 33ab0989-1f9e-4ee4-aab2-464cfd3731cb The following development artifacts have been built, and will exist for the next 30 days:
To install this version:
|
@@ -416,7 +416,17 @@ func TestTlsWebhook(t *testing.T) { | |||
} | |||
|
|||
// since we're using statically-named service, perform a best-effort delete of a previous service | |||
framework.KubeClient.CoreV1().Services(defaultNs).Delete(svc.ObjectMeta.Name, waitForDeletion) // nolint:errcheck | |||
err = framework.KubeClient.CoreV1().Services(defaultNs).Delete(svc.ObjectMeta.Name, waitForDeletion) |
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.
needs DeepCopy() here to avoid data race
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.
otherwise LGTM
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.
👍 deepcopying all the things.
Some more fixes for the flaky e2e tests.
0dcf8ac
to
534d2f3
Compare
Build Succeeded 👏 Build Id: 5c8a1111-a787-47aa-a0ea-a7086d1b6bbc The following development artifacts have been built, and will exist for the next 30 days:
To install this version:
|
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.
LGTM
Some more fixes for the flaky e2e tests.
I'm hoping the makes things stable again! 🍰