-
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
delete
should omit docker
commands for non-docker drivers
#7960
Comments
It takes me 30 seconds to run "minikube delete", even when there are no clusters! $ minikube status
🤷 There is no local cluster named "minikube"
👉 To fix this, run: "minikube start"
$ time minikube delete
🙄 "minikube" profile does not exist, trying anyways.
💀 Removed all traces of the "minikube" cluster.
real 0m30.533s
user 0m0.420s
sys 0m0.156s The reason for this is that each EDIT: Found the culprit, I had an old plugin installed (that was timing out) |
Also it seems like the podman version is currently broken:
"volume ls" does have the flag, but "volume prune" does not. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
delete
should skip docker
commands for non-docker drivers
delete
should skip docker
commands for non-docker driversdelete
should omit docker
commands for non-docker drivers
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Currently we always run the docker and podman volume cleanup commands.
Especially the
docker volume
is annoying, because it is so very slow to run...Should try to only run commands relevant to the profiles and machines deleted ?
Normally the volume will be deleted with the container, using the
rm -v
command.The text was updated successfully, but these errors were encountered: