-
Notifications
You must be signed in to change notification settings - Fork 208
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
🐛 fix: fix reading of semver for kube version #158
Conversation
Hi @rsmitty. Thanks for your PR. I'm waiting for a kubernetes-sigs or kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
@vincepri This should be closer to what you were looking for. Still allows for input of |
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.
/approve
/ok-to-test
@rsmitty You'll need to remove the Fixes ...
from the commit description to make the invalid commit message error go away
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rsmitty, vincepri 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 |
205dadd
to
d10ecea
Compare
@@ -61,7 +62,11 @@ func (s *Service) CreateInstance(scope *scope.MachineScope) (*compute.Instance, | |||
scope.Name(), scope.Namespace()) | |||
} | |||
|
|||
version, err := semver.Make(*scope.Machine.Spec.Version) |
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.
Instead of manual parsing, maybe use ParseTolerant
(instead of Make
).
d10ecea
to
a7def4d
Compare
This PR updates how we parse the kubernetes version in the instances.go and allows it to pass the semver check during machine creation. Signed-off-by: Spencer Smith <robertspencersmith@gmail.com>
a7def4d
to
2ec9377
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.
/lgtm
What this PR does / why we need it:
This PR updates how we parse the kubernetes version in the
instances.go and allows it to pass the semver check during machine creation.
Signed-off-by: Spencer Smith robertspencersmith@gmail.com
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #156