Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall ArgoCD from Kubernetes cluster?

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?

like image 295
Sparsh Jain Avatar asked Sep 14 '25 13:09

Sparsh Jain


1 Answers

You can delete the entire installation using:

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

Reference

like image 106
Ashish Jain Avatar answered Sep 17 '25 19:09

Ashish Jain