如何从Kubernetes集群中卸载ArgoCD?

12

我使用以下方式在我的kubernetes集群上安装了ArgoCD:

kubectl create namespace argocd

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

现在,如何完全从集群中删除它?
1个回答

27

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

参考资料


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接