I'm deploying several services to my local cluster (minikube
) using DevSpace tool. Once someone makes changes to one of the services and pushes the image to our private repo, I need these changes to be available on my local then. What I do now is I completely delete minikube
cluster and start a new one. In this case all images with same tags are just updated with the latest version, not a cached one.
But I believe there is some more elegant way to overcome this. So, I need to cleanup/remove/delete outdated images from my local cluster somehow before re-deploying services there.
Can someone point where they are stored, how I can review and remove them? Thanks.