-
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
Fix mounting on non-default profile #12711
Conversation
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 49.7s 47.6s 48.1s 45.7s 47.6s Times for minikube ingress: 34.7s 31.4s 30.8s 32.2s 30.9s docker driver with docker runtime
Times for minikube (PR 12711) start: 21.5s 21.5s 21.5s 21.4s 21.8s Times for minikube ingress: 28.0s 26.9s 28.0s 26.4s 28.4s docker driver with containerd runtime
Times for minikube start: 31.4s 43.4s 43.6s 43.7s 41.9s Times for minikube ingress: 34.4s 32.9s 23.9s 32.5s 33.9s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
kvm2 driver with docker runtime
Times for minikube start: 49.2s 46.5s 48.0s 46.1s 46.6s Times for minikube ingress: 31.8s 30.2s 31.3s 30.3s 31.2s docker driver with docker runtime
Times for minikube ingress: 27.4s 26.9s 26.9s 34.4s 26.9s Times for minikube start: 21.9s 21.0s 21.3s 20.9s 21.0s docker driver with containerd runtime
Times for minikube start: 26.2s 43.1s 43.7s 43.9s 42.8s Times for minikube ingress: 34.9s 31.9s 32.9s 32.9s 32.9s |
kvm2 driver with docker runtime
Times for minikube ingress: 32.8s 35.8s 30.8s 30.8s 30.7s Times for minikube start: 50.4s 49.3s 47.6s 47.7s 46.5s docker driver with docker runtime
Times for minikube start: 22.3s 20.7s 23.5s 21.1s 21.9s Times for minikube ingress: 26.4s 27.9s 31.5s 28.9s 34.5s docker driver with containerd runtime
Times for minikube start: 31.1s 37.0s 44.2s 44.0s 43.4s Times for minikube ingress: 33.4s 29.5s 32.9s 27.9s 23.4s |
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. |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
/retest-this-please |
kvm2 driver with docker runtime
Times for minikube (PR 12711) start: 47.0s 46.9s 45.7s 47.1s 47.4s Times for minikube ingress: 31.8s 32.3s 31.8s 33.3s 30.8s docker driver with docker runtime
Times for minikube (PR 12711) start: 21.3s 21.9s 22.5s 22.1s 21.5s Times for minikube ingress: 31.4s 28.4s 27.5s 26.9s 27.4s docker driver with containerd runtime
Times for minikube start: 27.1s 44.4s 44.6s 43.4s 44.6s Times for minikube ingress: 46.9s 29.4s 28.9s 36.9s 36.9s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sharifelgamal, 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 |
Fixes #12675
Problem:
Using
--mount
flag on start doesn't work on VM drivers when using non-default profile. Root cause is we weren't passing the profile command when runningminikube mount
command so was only working on default profile.Solution:
Pass profile into
mount
command.Problem:
Killing mount on a cluster or deleting a cluster kills the mount on all clusters. Root cause is we use a single mount process between between all clusters, so when one's terminated it terminates all mounts.
Solution:
Make a mount process for each profile so they're independent of each other.