-
Notifications
You must be signed in to change notification settings - Fork 118
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
use UEFI instead of legacy as default boot mode #1326
base: main
Are you sure you want to change the base?
Conversation
/test-centos-integration-release-1-5 |
1667311
to
e3ac45c
Compare
/test-centos-integration-release-1-5 |
/test-centos-integration-release-1-5 |
/retitle use UEFI instead of legacy as default boot mode |
/test-centos-integration-release-1-5 |
/hold |
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
I want to do the same in BMO e2e tests
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lentzi90 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 |
I think defaulting to UEFI is a reasonable thing to do regardless of CI issues. |
/test-centos-integration-release-1-5 |
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
/test-centos-integration-release-1-5 |
New changes are detected. LGTM label has been removed. |
/est-centos-integration-release-1-6 |
/test-centos-integration-release-1-6 |
<nvram template="/usr/share/OVMF/OVMF_VARS.secboot.fd">/var/lib/libvirt/qemu/nvram/{{ item.name }}.fd</nvram> | ||
{% elif host_os == 'centos' or host_os == 'rhel' %} | ||
<loader readonly='yes' type='pflash'>/usr/share/OVMF/OVMF_VARS.fd</loader> |
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.
s/VARS/CODE/
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.
On centos it is VARS on ubuntu it is CODE, this is the centos condition
{% else %} | ||
<nvram>/var/lib/libvirt/qemu/nvram/{{ item.name }}.fd</nvram> | ||
<loader readonly='yes' type='pflash'>/usr/share/OVMF/OVMF_CODE.fd</loader> | ||
<nvram template="/usr/share/OVMF/OVMF_CODE.fd">/var/lib/libvirt/qemu/nvram/{{ item.name }}.fd</nvram> |
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.
s/CODE/VARS/
Apart from recent potential issues related to using bios, uefi default makes makes more sense in general as for a long time all enterprise hardware is either using uefi or secure-uefi. This commit: - switched the default libvirt boot loader firmware from bios to the more modern uefi Signed-off-by: Adam Rozman <[email protected]>
/metal3-ubuntu-e2e-integration-test-main |
/ok-to-test |
/metal3-centos-e2e-integration-test-release-1-7 |
/metal3-ubuntu-e2e-integration-test-main |
/test metal3-ubuntu-e2e-integration-test-main |
/test metal3-ubuntu-e2e-integration-test-main |
/test metal3-dev-env-integration-test-ubuntu-main |
@Rozzii: The following test failed, say
Full PR test history. Your PR dashboard. 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. |
/test metal3-dev-env-integration-test-ubuntu-main |
/test metal3-ubuntu-e2e-integration-test-main |
/ok-to-test |
PR needs rebase. 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-sigs/prow repository. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with /lifecycle stale |
/remove-lifecycle stale |
Apart from recent potential issues related to using bios, uefi default makes more sense in general as for a long time all enterprise hardware is either using uefi or secure-uefi.
This commit: