I want to remove pod that I deployed to my cluster with helm install.
I used 3 ways to do so:
helm uninstall <release name>-> remove the pod from the cluster and from the helm listhelm delete <release name>-> remove the pod from the cluster and from the helm listkubectl delete -n <namespace> deploy <deployment name>-> remove the pod from the cluster but not from the helm list
What's the difference between them? Is one better practice then the other?