-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Bootloader ISO EFI Support #13123
Bootloader ISO EFI Support #13123
Conversation
Hi @klaases. Thanks for your PR. I'm waiting for a 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. |
/assign |
wip: add efi bootloader |
Can one of the admins verify this patch? |
This configuration resulted in the following error when building ISO:
|
Added additional files for testing. |
Hi @klaases, building a new ISO failed. |
ok-to-build-iso |
Hi @klaases, building a new ISO failed. |
Trying to build on a new ubuntu server, rather than trying with Docker. Trying again with
|
ok-to-build-iso |
Hi @klaases, building a new ISO failed. |
ok-to-build-iso |
Hi @klaases, building a new ISO failed. |
Nest steps will be to install https://cloud.google.com/storage/docs/gsutil_install#deb
|
ok-to-build-iso |
Hi @klaases, building a new ISO failed. |
ok-to-build-iso |
Hi @klaases, we have updated your PR with the reference to newly built ISO. Pull the changes locally if you want to test with them or update your PR further. |
/ok-to-test |
Success - have tested the new ISO with the following commands. Download the latest ISO, and place in Alternative URL: Run Run Use Run |
kvm2 driver with docker runtime
Times for minikube start: 45.0s 43.9s 43.6s 57.6s 43.8s Times for minikube (PR 13123) ingress: 29.1s 29.5s 29.1s 29.2s 29.1s docker driver with docker runtime
Times for minikube start: 30.2s 25.9s 29.3s 25.8s 26.0s Times for minikube (PR 13123) ingress: 20.9s 23.0s 22.9s 22.9s 22.4s docker driver with containerd runtime
Times for minikube ingress: 23.4s 33.4s 19.4s 53.9s 18.9s Times for minikube start: 31.1s 41.4s 44.7s 41.4s 44.4s |
@klaases we can upgrade containerd to 1.4.12, with #13195 that would also address the security issue (CVE-2021-41190) |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
kvm2 driver with docker runtime
Times for minikube start: 48.1s 45.7s 45.4s 44.2s 43.3s Times for minikube ingress: 28.5s 29.6s 30.6s 29.0s 25.6s docker driver with docker runtime
Times for minikube ingress: 21.4s 22.9s 22.9s 21.9s 21.9s Times for minikube start: 29.9s 25.8s 25.8s 26.2s 25.3s docker driver with containerd runtime
Times for minikube start: 34.7s 41.4s 45.4s 45.7s 40.9s Times for minikube ingress: 19.9s 33.4s 18.9s 18.9s 23.4s |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: klaases, sharifelgamal 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 |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
Fixes: #13122
This PR is an important prerequisite for building minikube ISO on ARM64.
Note: the
containerd
version has been lowered 1.4.9, as 1.5.8 has a rotating hash issue that prevents the ISO from building properly. For more information, see: #13193Note: make sure to merge #12892 before submission. [CONFIRMED]
Build the ISO, see https://minikube.sigs.k8s.io/docs/contrib/building/iso/
Use
mk ssh
to ssh into minikube ISO.Run
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
Before:
BIOS
After:
UEFI
Have tested the new ISO with the following commands.
Download the latest ISO, and place in
minikube/out
folder.curl -LO https://storage.googleapis.com/minikube-builds/iso/13123/minikube-v1.24.0-1640194376-13123.iso
Alternative URL:
gs://minikube-builds/iso/13123/minikube-v1.24.0-1640194376-13123.iso
Run
make
from minikube home folder.Run
./out/minikube start --iso-url=file://$(pwd)/out/minikube-v1.24.0-1640194376-13123.iso
to start minikube with the new ISO.Use
mk ssh
to ssh into minikube ISO.Run
[ -d /sys/firmware/efi ] && echo UEFI || echo BIOS
to confirm that minikube is running with the UEFI bootloader.