-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
KEP-4330: update minCompatibilityVersion range. #5006
base: master
Are you sure you want to change the base?
KEP-4330: update minCompatibilityVersion range. #5006
Conversation
/approve Thanks for cleaning this up |
/lgtm Thanks for the cleanup here! |
4b40044
to
11f44d0
Compare
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: jpbetz, siyuanfoundation 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 |
/cc @derekwaynecarr for sig approval |
@siyuanfoundation: GitHub didn't allow me to request PR reviews from the following users: for, sig, approval. Note that only kubernetes members and repo collaborators can review this PR, and authors cannot review their own PRs. 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. |
/lgtm |
Signed-off-by: Siyuan Zhang <[email protected]>
11f44d0
to
f104443
Compare
New changes are detected. LGTM label has been removed. |
version N must be (en/de)codable for k8s versions N-1 through N+1. | ||
To enable upgrades and rollbacks, pre compatibility version, the version selected for storage in etcd in | ||
version N must be (en/de)codable for k8s versions N-1 through N+1. With compatibility version, the version selected for storage in etcd in | ||
compatibility version `EmulationVersion+MinCompatibilityVersion` must be (en/de)codable for k8s versions `MinCompatibilityVersion` through `EmulationVersion+1`. |
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.
nit: Usage of the +
sign is a bit weird here, could imply addition of the versions. Maybe split into two words?
update minCompatibilityVersion range to make it more consistent and clear.