如何从 Kubernetes 集群中卸载 ArgoCD?
How to uninstall ArgoCD from Kubernetes cluster?
我已经使用
在我的 kubernetes 集群上安装了 ArgoCD
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
现在,如何将它从集群中完全删除?
您可以使用此删除整个安装 - kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
我已经使用
在我的 kubernetes 集群上安装了 ArgoCDkubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
现在,如何将它从集群中完全删除?
您可以使用此删除整个安装 - kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml