Delete các application cứng đầu trên Argocd.

Nếu như application của bạn mãi không xóa được
# Check what ArgoCD applications exist and their correct resource type
kubectl get applications -n argocd
# Or try the full resource name
kubectl get applications.argoproj.io -n argocd
# Remove finalizers from ArgoCD application (correct resource type)
kubectl patch application rancher -p '{"metadata": {"finalizers": null}}' --type merge -n argocd
# Then delete the application
kubectl delete application rancher -n argocd
Comment on “[ArgoCD]Hướng dẫn cấu hình argocd deploy application trên k8s bằng helm”