-
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
Add "resume" as an alias for "unpause" #11431
Conversation
Hi @briandealwis. 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? |
We sorta left suspend/resume for the VM, but then again it was never implemented either. And I think it is called "pause" and "resume" in VBoxManage, so there's confusion anyway. https://www.virtualbox.org/manual/ch08.html#vboxmanage-controlvm
Not sure if the Docker VM has a similar feature ? How to best separate processes/machines. Doesn't seem that way, been requested for HyperKit like 5 years. So I guess it does stop/start. |
Then maybe the |
Nah, pause/resume is fine. We can do something else, if we do VM sleep |
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.
You need to run make generate-docs
, then it should be good to go ?
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.
thank you for this PR @briandealwis would u please make generate-docs
I was just running |
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 49.2s 45.7s 48.7s 46.1s 45.4s Times for minikube ingress: 42.7s 35.7s 34.7s 42.2s 35.3s docker driver with docker runtime
Times for minikube ingress: 32.5s 37.5s 34.6s 34.5s 35.0s Times for minikube start: 22.7s 21.1s 21.6s 20.9s 21.0s docker driver with containerd runtime
Times for minikube start: 31.1s 43.0s 43.2s 43.8s 47.5s |
/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.
thank you @briandealwis
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: briandealwis, medyagh 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 |
This PR adds an alias for the "unpause" command for "resume". I always make a mistaken running
minikube resume
and then realize that it'sunpause
.An alternative would be to use a
SuggestFor: ["resume"]
.And yes, I should be using auto-pause.