I have a bunch of kubernetes stuff in my local Docker desktop

5/27/2021

How do I get rid of them? Docker doesn't think they exist and my kubernetes-fu isn't good enough yet.

enter image description here

-- Dave Hodgkinson
docker
kubernetes

1 Answer

5/27/2021

You cannot remove them while they are in use. You'll have to shut down the Kubernetes system first, that's under Preferences (the gear icon) and then Kubernetes. Once that is done, run docker system prune to clean up unused everything.

-- coderanger
Source: StackOverflow