-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Sort API Services by Kube-Version order #64004
Sort API Services by Kube-Version order #64004
Conversation
c1e09fa
to
2585c77
Compare
2585c77
to
ba4b3c8
Compare
|
||
func parseKubeVersion(v string) (majorVersion int, vType versionType, minorVersion int, ok bool) { | ||
var err error | ||
re := regexp.MustCompile("^v([\\d]+)(?:(alpha|beta)([\\d]+))?$") |
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.
move compile out to a package var and reuse
func parseKubeVersion(v string) (majorVersion int, vType versionType, minorVersion int, ok bool) { | ||
var err error | ||
re := regexp.MustCompile("^v([\\d]+)(?:(alpha|beta)([\\d]+))?$") | ||
submatches := re.FindStringSubmatch(strings.ToLower(v)) |
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.
don't lowercase the string, should match exactly
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.
what should we do if the version is v1Beta1
? options: 1. consider it out of format, 2. consider it in-format and put it before v1beta1
?
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.
out of format
need to update the docs on the version priority field in APIService |
a few nits, lgtm otherwise |
ba4b3c8
to
1808a7c
Compare
|
||
func parseKubeVersion(v string) (majorVersion int, vType versionType, minorVersion int, ok bool) { | ||
var err error | ||
re := regexp.MustCompile("^v([\\d]+)(?:(alpha|beta)([\\d]+))?$") |
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.
What about rc
releases?
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.
The idea is to support kubernetes like versioning. I don't think we have rc in our API object's versioning.
11ef8c6
to
1187391
Compare
/test pull-kubernetes-kubemark-e2e-gce |
/test pull-kubernetes-e2e-gce |
|
||
const ( | ||
// Bigger the version type number, higher priority it is | ||
versionTypeAlpha versionType = 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.
this should be all iota, not zero: http://programming.guide/go/iota.html. Otherwise, alpha and beta are both zero.
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.
nvmd. iota is the index of the const declaration in the const block.
1187391
to
0969d8f
Compare
case ok1 && !ok2: | ||
return 1 | ||
} | ||
if v1type != v2type { |
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: confusing logic. Why not simple as:
if v1type != v2type { return int(v1type) - int(v2type) }
if v1major != v2major { return v1major - v2major }
return v1minor - v2minor
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.
that works too and simpler. fixed.
0969d8f
to
ba4c7d9
Compare
@@ -68,6 +68,11 @@ type APIServiceSpec struct { | |||
// The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). | |||
// The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) | |||
// Since it's inside of a group, the number can be small, probably in the 10s. | |||
// In case of equal (or lack of) version priorities, the version string will be used to compute the order inside a group. |
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.
what is "lack of" ? It default to zero.
Only a doc nit. Otherwise lgtm. |
{"v1alpha2", "v1alpha1", true}, | ||
{"v1beta1", "v2alpha3", true}, | ||
{"v1alpha10", "v1alpha2", true}, | ||
{"v1beta10", "v1beta2", true}, |
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.
Add cases comparing kubversion against unformatted string and two unformatted strings please.
Just a request for a missing test case. lgtm |
ba4c7d9
to
12fd47b
Compare
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.
A few nits, sorry!
// Bigger the version type number, higher priority it is | ||
versionTypeAlpha versionType = iota | ||
versionTypeBeta versionType = iota | ||
versionTypeGA versionType = iota |
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.
Omit the second two iota
s?
{"v1beta10", "v1beta2", true}, | ||
{"foo", "v1beta2", false}, | ||
{"bar", "foo", true}, | ||
{"version1", "version2", true}, // Non kube-like versions are sorted alphabetically |
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.
Add foo10
and foo1
or something else to demonstrate that it's lexicographic.
{ | ||
name: "case4", | ||
versions: []string{"v1", "v2", "test", "final"}, | ||
expected: []string{"v2", "v1", "final", "test"}, |
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.
and maybe one here that also demonstrates lexicographic ordering.
@@ -68,6 +68,11 @@ type APIServiceSpec struct { | |||
// The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). | |||
// The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) | |||
// Since it's inside of a group, the number can be small, probably in the 10s. | |||
// In case of equal version priorities, the version string will be used to compute the order inside a group. | |||
// If the version string is kube-like, it will be used for ordering otherwise lexical order will be used. |
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.
If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha, and then within each group by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
12fd47b
to
19e1ad7
Compare
/approve If we could get one last set of eyes to review the comment wording I proposed before we merge this that would be great (@liggitt?). |
/retest |
19e1ad7
to
bfd0cbe
Compare
/retest |
@@ -68,6 +68,12 @@ type APIServiceSpec struct { | |||
// The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). | |||
// The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) |
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.
Drop this line, the adjusted secondary sort behavior is described below
// If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered | ||
// lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), | ||
// then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first | ||
// by GA > beta > alpha, and then within each group by comparing major version, then minor version. An example |
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.
“group” in this context means ga/beta/alpha, but is easily confused with API group. Maybe just drop “within each group”?
one bit of the old field doc needs removing, one bit of the new I found confusing but don’t feel strongly about |
bfd0cbe
to
cc87ba3
Compare
/test pull-kubernetes-e2e-kops-aws |
@liggitt Please take another look. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lavalamp, liggitt, mbohlool 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 |
/retest Review the full test history for this PR. Silence the bot with an |
2 similar comments
/retest Review the full test history for this PR. Silence the bot with an |
/retest Review the full test history for this PR. Silence the bot with an |
/test pull-kubernetes-e2e-gce |
/retest |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
Sort API services based on kube-version format. If the version does not have kube-version format.
kube-version format:
v[MajorVersion]((alpha|beta)[minorVersion])?
e.g. v1alpha1, v4, v21beta12
Sort base on:
Version type first: GA>Beta>Alpha
Major version then Minor version (if exists).