9

I've installed ArgoCD on my kubernetes cluster using

kubectl create namespace argocd

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Now, how to remove it from the cluster totally?

Sparsh Jain
  • 641
  • 5
  • 16

1 Answers1

21

You can delete the entire installation using this - kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Reference

Ashish Jain
  • 226
  • 2
  • 2