如何从 Kubernetes 集群中卸载 ArgoCD?

Spa*_*ain 16 kubernetes argocd

我已经使用以下命令在我的 kubernetes 集群上安装了 ArgoCD

kubectl create namespace argocd

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
Run Code Online (Sandbox Code Playgroud)

现在,如何将其从集群中完全删除呢?

小智 32

您可以使用此删除整个安装 -kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

参考