-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Node E2E: add termination message test #23969
Node E2E: add termination message test #23969
Conversation
ec563e3
to
f456cd1
Compare
@Random-Liu Would you check this test failure |
@pwittrock Just wanna to ask you about that. @chenyeliang met this before. The |
Symbols aren't exported from _test.go files :( If you move it to a non-test file I suspect it will work. |
Thanks! Good to know that! :) |
f456cd1
to
763d29d
Compare
@pwittrock Fixed, :) |
Name: "termination-message-container", | ||
Command: []string{"/bin/sh", "-c"}, | ||
Args: []string{"sleep 60 && /bin/echo -n " + terminationMessage + " > " + terminationMessagePath}, | ||
TerminationMessagePath: terminationMessagePath, |
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.
Do you need to sleep 60 seconds? This is going to extend the runtime of the tests by a good bit.
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.
Agree, I didn't remember where I copied this line from. Thanks! :)
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.
Will correct the time soon.
Review pass done. |
763d29d
to
1d915d9
Compare
Will rebase and self apply LGTM after #23658 gets merged. |
SGTM |
1d915d9
to
fa93d74
Compare
@pwittrock I'm waiting for #24329, :) @liangchenye is refactoring the container conformance test in #24329 , and I'll rebase all my PRs based on his refactoring PR. |
Makes sense |
@Random-Liu Let me know when I should TAL. I assume you are busy for the next couple weeks with 1.3 stuff |
@pwittrock Will rebase these PRs after code freeze. :) |
fa93d74
to
6bbe063
Compare
@pwittrock Rebased the PR. Sorry for the delay. :) |
6bbe063
to
19f5a90
Compare
I just did a simple rebase, apply lgtm again. |
It's nice to have this test coverage in 1.3, so mark 1.3. |
E2E passed put check still listed as yellow and not in queue @k8s-bot e2e test this issue: #IGNORE |
@k8s-bot node e2e test this |
@k8s-bot e2e test this issue: #IGNORE |
GCE e2e build/test passed for commit 19f5a90. |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
GCE e2e build/test passed for commit 19f5a90. |
Automatic merge from submit-queue |
Bug 1745773: UPSTREAM: 83747: Improve efficiency of csiMountMgr.GetAttributes Origin-commit: a8701aabbac3d841addf8913f8dc58ba0209a9e6
Based on #23658.
This PR:
ConformanceContainer
a bitThis test proves #23639, without #23658, the test could not pass.
@liangchenye @kubernetes/sig-node