-
Notifications
You must be signed in to change notification settings - Fork 124
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
🌱 enable https download in ipxe #507
Conversation
as per https://ipxe.org/buildcfg/download_proto_https Signed-off-by: Dmitri Fedotov <dmitri.fedotov@sap.com>
Hi @defo89. Thanks for your PR. I'm waiting for a metal3-io 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. |
/ok-to-test |
/test metal3-centos-e2e-integration-test-main metal3-ubuntu-e2e-integration-test-main |
1 similar comment
/test metal3-centos-e2e-integration-test-main metal3-ubuntu-e2e-integration-test-main |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dtantsur 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 |
/retest |
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, but
/cc @Rozzii
/hold, for https you need to also supply the certificates unless the specific url is compatible with ipxe's default credential chain (Mozzilla) also you have to configure the dnsmasq server of ironic with the same certs, we have already tooling to build https enabled ipxe on the fly or to use pre-built ipxe firmware https://github.com/metal3-io/utility-images. What you are editing @defo89 in this PR is the default / statically compiled ipxe firmware (that is why it is compiled at container build time) that is suitable for those who have no special requirements, for those who need more advanced ipxe firmware I would recommend to deploy the ipxebuilder as an init container of the Ironic pod or just patch the Dockerfile downstream but IMO we should in no scenario edit the upstream docker file to get this functionality. |
/hold |
@defo89: The following test failed, say
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. |
@Rozzii Would you consider an option to override the IPXE image location per env var like its done with |
I plan to document this topic a bit more (or a lot more) in the future but I think we have such variables:
You are AFAIK the first user who would like to run things with custom PXE firmware so please keep me in the loop if you run into some issues. |
Would it be okay to close this ticket @defo89 ? |
@Rozzii sure, we can close it. Thanks! |
What this PR does / why we need it:
I am trying to use TLS in every part of the deployment chain and it seems that by default HTTPS is disabled in iPXE image.
As per https://ipxe.org/buildcfg/download_proto_https this commit would enable support (tested this in our environment).