我在我的kubernetes集群上安装了ArgoCD
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml现在,如何将其完全从集群中删除?
发布于 2022-01-11 04:41:34
您可以使用这个- kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml删除整个安装。
https://stackoverflow.com/questions/70661683
复制相似问题