-
Notifications
You must be signed in to change notification settings - Fork 159
Automated cherry pick of #1189: Skip snapshot and restore test because test fix #1191
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
Conversation
… is not backported to 1.8-. The fix is only in 1.9+.
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: amacaskill The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/assign @msau42 |
/lgtm |
/hold The testskip didn't work. #1186 |
@amacaskill: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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/test-infra repository. I understand the commands that are listed here. |
Still not working. These tests create a kubernetes cluster with nodes that have version 1.28, and it's still failing. I don't understand.
But is that the version that matters? |
The fix itself is in the driver and does not depend on any kubernetes cluster version. Perhaps for the cherry picks, we should just disable the test case entirely. |
How do I do that? Do you mean just adding a test skip (for all versions) to the release-1.8 and 1.7 branch? |
@@ -598,6 +598,11 @@ func generateGKETestSkip(testParams *testParameters) string { | |||
skipString = skipString + "|pvc.data.source" | |||
} | |||
|
|||
// Snapshot and restore test fixes were introduced after 1.26 in PR#972. | |||
if curVer.lessThan(mustParseVersion("1.26.0")) { |
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.
Yeah just remove the version check altogether
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.
ok will fix now.
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.
Ok I am going to just try to do this directly in the cherry picks for the CVE's since this one isn't really necessary
Cherry pick of #1189 on release-1.8.
#1189: Skip snapshot and restore test because test fix
For details on the cherry pick process, see the cherry pick requests page.