hello-kubernetes icon indicating copy to clipboard operation
hello-kubernetes copied to clipboard

Document how to delete the deployment

Open simonw opened this issue 3 years ago • 1 comments

After trying this out (as a very new-to-Kubernetes person) I had a lot of trouble figuring out how to remove it again.

Eventually this worked for me:

kubectl delete deployment hello-kubernetes-hello-world -n hello-kubernetes

Would be great if the README covered this!

simonw avatar Oct 27 '21 20:10 simonw

The correct way to uninstall a helm chart is to use helm uninstall RELEASE_NAME where RELEASE_NAME is the name you gave to your application at installation time. If you can't remember the name of the release, run helm list

dcorbe avatar Mar 04 '22 09:03 dcorbe