-
Notifications
You must be signed in to change notification settings - Fork 8
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
✨ Implement version picker for Ironic #97
base: main
Are you sure you want to change the base?
Conversation
The Ironic object now has a Version field that allows a user to request a specific version (latest or X.Y). Version 27.0 is added as supported. The Status is updated to support both installed and requested version (removing redundant nested structure). Signed-off-by: Dmitry Tantsur <[email protected]>
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
@@ -324,6 +337,32 @@ var _ = Describe("Ironic object tests", func() { | |||
VerifyIronic(ironic) | |||
}) | |||
|
|||
It("creates Ironic of an oder version", Label("older-version"), func() { |
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: "older"
/cc @tuminoid |
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.
Besides the typo nit already mentioned, looks clean to me.
/hold
Holding in case you want to fix typo now or unhold for later.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lentzi90, tuminoid 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 |
The Ironic object now has a Version field that allows a user to request
a specific version (latest or X.Y). Version 27.0 is added as supported.
The Status is updated to support both installed and requested version
(removing redundant nested structure).
Signed-off-by: Dmitry Tantsur [email protected]