node icon indicating copy to clipboard operation
node copied to clipboard

make clean target doesn't clean the kind cluster.

Open arijitAD opened this issue 4 years ago • 2 comments

The cluster started with make kind-cluster-create isn't fully deleted by make clean kind-cluster-clean. i.e., these set of steps will give an error: * make kind-cluster-create * make clean kind-cluster-clean * make kind-cluster-create Need to manually delete it with kind delete cluster --name single Source: https://github.com/ovrclk/akash/tree/master/_run/single

Solution:

  1. Either add the code to delete the cluster in make target
  2. Update the documentation to manually clean the cluster.

arijitAD avatar Jul 08 '21 15:07 arijitAD

I believe I used make kind-cluster-delete to remove the created cluster. Maybe the kind-cluster-clearn target should be updated to run that?

hydrogen18 avatar Jul 12 '21 13:07 hydrogen18

kind-cluster-clean originally deleted everything that the provider created in kubernetes - it cleaned the cluster, maybe kind-cluster-reset would be better because *clean is so often used for deleting files?

boz avatar Jul 12 '21 13:07 boz