-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Bug 1784624: baremetal: Enable the baremetal platform to override the default rhcos images #2757
Bug 1784624: baremetal: Enable the baremetal platform to override the default rhcos images #2757
Conversation
Hi @kirankt. Thanks for your PR. I'm waiting for a openshift 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. |
Looks good to me, generally. I think the only thing that's missing is adding an example to https://github.com/openshift/installer/blob/master/docs/user/metal/install_ipi.md#install-config /assign @abhinavdahiya |
/label platform/baremetal |
Build SUCCESS, see build http://10.8.144.11:8080/job/dev-tools/1350/ |
Couple of nits re the logging but otherwise lgtm |
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 looks good to me, just a couple of minor comments and I think it's good to go.
One small other thing would be to adjust the commit style, https://github.com/openshift/installer/blob/master/CONTRIBUTING.md#commit-message-format
It should be prefixed by baremetal:
(the installer team will ask for this when they review)
Build FAILURE, see build http://10.8.144.11:8080/job/dev-tools/1353/ |
/lgtm @abhinavdahiya PTAL, thanks! |
/retest Please review the full test history for this PR and help us cut down flakes. |
13 similar comments
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/cherry-pick release-4.3 |
@stbenjam: new pull request created: #2835 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/test-infra repository. |
/retitle Bug 1784624: baremetal: Enable the baremetal platform to override the default rhcos images |
@kirankt: All pull requests linked via external trackers have merged. Bugzilla bug 1784624 has been moved to the MODIFIED state. 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/test-infra repository. |
@kirankt: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. |
Since openshift/installer#2757 merged we can mirror the installer referenced images directly to simulate typical disconnected install scenarios. This removes some complexity as we no longer need to run the downloader container on the host, only expose the unprocessed images via http. Note this will work with latest 4.4. builds but not 4.3 until openshift/installer#2835 lands
Since openshift/installer#2757 merged we can mirror the installer referenced images directly to simulate typical disconnected install scenarios. This removes some complexity as we no longer need to run the downloader container on the host, only expose the unprocessed images via http. Note this will work with latest 4.4. builds but not 4.3 until openshift/installer#2835 lands
Since openshift/installer#2757 merged we can mirror the installer referenced images directly to simulate typical disconnected install scenarios. This removes some complexity as we no longer need to run the downloader container on the host, only expose the unprocessed images via http. Note this will work with latest 4.4. builds but not 4.3 until openshift/installer#2835 lands
What Changed?
Addition of two new configuration parameters in the Baremetal platform
Why?
Gives the baremetal platform to override the default rhcos image by specifying an alternate URL to download images for bootstrap node and cluster nodes.
#2597