-
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
feat: allow preload for overlayfs #18333
Conversation
Hi @ComradeProgrammer. 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. |
Can one of the admins verify this patch? |
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.
for the PR descripton for the Before please explain the Docker desktop settings
for example... Enable this or Disable that...
and also for Before Explain what was happening (not using the Preload)
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.7s 52.2s 51.5s 49.3s 49.8s Times for minikube ingress: 28.7s 26.8s 26.3s 26.8s 26.3s docker driver with docker runtime
Times for minikube start: 25.3s 26.0s 24.1s 25.8s 23.5s Times for minikube ingress: 19.9s 19.4s 20.4s 20.9s 19.9s docker driver with containerd runtime
Times for minikube ingress: 29.9s 29.9s 30.9s 46.9s 31.9s Times for minikube start: 21.6s 22.4s 21.9s 22.1s 23.7s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
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.
Thanks for the PR!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ComradeProgrammer, spowelljr 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 |
In docker desktop when we check the "Use containerd for pulling and storing images" option in setting, docker desktop will use the containerd image store and switch to overlayfs storage driver.
Before this pr, minikube will set preload to false anyway when encountering the overlayfs file system. However, actually minikube can still use the preload to accelerate the image pulling process under such circumstance.
This small pr allows preload when overlayfs is used. FIX #18255
Before:
minikube set preload to false when encountering overlayfs
After
Now preload is used even when overlayfs is used
time comparasion:
Before: 3minute 45 seconds
After: 3 minute 37 seconds