-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
✨ Detect panics in e2e tests #11066
✨ Detect panics in e2e tests #11066
Conversation
/hold |
a7c96dd
to
cbf7639
Compare
Panic detected in the controller: https://prow.k8s.io/view/gs/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_cluster-api/11066/pull-cluster-api-e2e-blocking-main/1825544343100854272 (panic is reported after the test completes) Panic detected in webhook: https://prow.k8s.io/view/gs/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_cluster-api/11066/pull-cluster-api-e2e-blocking-main/1825555193756913664 |
dd4259e
to
90b7901
Compare
/test ? |
@sbueringer: The following commands are available to trigger required jobs:
The following commands are available to trigger optional jobs:
Use
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/assign @chrischdi |
/test pull-cluster-api-e2e-conformance-ci-latest-main |
/hold cancel |
/retest |
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
One nit
LGTM label has been added. Git tree hash: 07c76fcfa33fd0f16d96745130c36ebf7641e5cc
|
Signed-off-by: Stefan Büringer buringerst@vmware.com
90b7901
to
7ee08ec
Compare
/test pull-cluster-api-e2e-main |
@chrischdi Thx for the review, fixed |
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
/approve
LGTM label has been added. Git tree hash: a9aaabb3f321134208d64f1db1f7b0eb6cae0d25
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: chrischdi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Signed-off-by: Stefan Büringer buringerst@vmware.com
What this PR does / why we need it:
Since CR v0.19 panics in controllers and webhook are recovered per default.
This PR extends our e2e test framework so we still fail our tests if panic occurs (the controller won't crashloop anymore)
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Part of #10653