kubernetesargocd

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?


Solution

  • You can delete the entire installation using:

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

    Reference