-
Notifications
You must be signed in to change notification settings - Fork 18
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
E2E Tweaks/Fixes #279
E2E Tweaks/Fixes #279
Conversation
Sample output from the new
And, similarly, the updated OperatorPolicy function:
|
600e0a7
to
bad64e2
Compare
/hold to retry a bunch of times |
test/utils/utils.go
Outdated
@@ -163,6 +159,14 @@ func Kubectl(args ...string) { | |||
} | |||
} | |||
|
|||
func KubectlDelete(args ...string) { | |||
deleteArgs := []string{ | |||
"delete", "--wait=false", "--ignore-not-found", |
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.
I was hoping --wait=false
would save some time, but it looks like the time to run the tests is similar.
Failure on run # 9:
|
Failure in run # 8:
|
Failure in run # 5 (hosted mode):
|
Is the current test fail related to |
I like this changes Thanks Dale! |
/approve |
Failure in run # 11 (hosted mode):
|
Hosted mode failures:
|
Minimum K8s version failure (hosted mode):
Latest K8s version failure:
^^^ At first I was worried my changes had caused it, but sure enough there was another event sent by the controller, so this failure is valid:
|
Signed-off-by: Dale Haiducek <[email protected]>
Signed-off-by: Dale Haiducek <[email protected]>
Includes: - `wait=false` to skip waiting for finalizers - `ignore-not-found` to ignore not found errors Signed-off-by: Dale Haiducek <[email protected]>
Does the compliance check directly, providing the status message on failure. Signed-off-by: Dale Haiducek <[email protected]>
Signed-off-by: Dale Haiducek <[email protected]>
|
/unhold I'm not sure how useful it is to keep re-running these since the failures seem to be different each time. |
Hosted mode failure:
|
Signed-off-by: Dale Haiducek <[email protected]>
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dhaiducek, mprahl, yiraeChristineKim 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 |
0a0193e
into
open-cluster-management-io:main
Pause()
util functionCheckComplianceStatus()
function to also return the status message in the failure messagewait=false
to skip waiting for finalizers andignore-not-found