-
Notifications
You must be signed in to change notification settings - Fork 600
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
Flipping the SinkBinding storage bit to v1beta1 #3613
Conversation
/assign @capri-xiyue |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: nachocano 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 |
/test pull-knative-eventing-upgrade-tests |
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 also have an issue tracking the storage migration tasks?
I'll use the current issue to track it. I just edited the description here not to mark it as Fixed, and added an extra item there. Thanks for pointing this out |
Not sure whether we can change storage version to v1beta1. I remember eventing uses v1alpha1 for storage version because of some upgrade issues. |
we usually wait one release before changing the storage version. I believe the upgrade test expects |
@nachocano: The following test failed, say
Full PR test history. Your PR dashboard. 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. |
The following jobs failed:
Failed non-flaky tests preventing automatic retry of pull-knative-eventing-upgrade-tests:
|
LOL, I wrote this comment to a wrong PR: Ok, so I don't think it's actually failing because of the reordering. It's failing because of this:
So, what's happening is that at the release (.16) you're at v1alpha1 (stored version) and then tests upgrade to head and run the tests, all the new objects that get created during this test will now be at v1beta1 (stored version), so you can't then just downgrade to the .16 again (which doesn't have the v1beta1) and drop that version because you have objects that are being stored at that version. You'd have to do something like this:
|
LOL! |
/close Closing this as we will wait for one release before flipping the bit. |
Helps with #3544
Proposed Changes
Missing the storage migration job
Release Note
Docs