Home > Back-end >  How to uninstall ArgoCD from Kubernetes cluster?
How to uninstall ArgoCD from Kubernetes cluster?

Time:01-11

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?

CodePudding user response:

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

  •  Tags:  
  • Related