발생한 이유: kubectl delete -f ingress.yaml 명령으로 인그레스를 삭제하는 중 Ctrl + C로 취소했음 or 단기간에 너무 잦은 ALB 인그레스 생성, 삭제
아래 사진은 kubectl logs deploy/aws-load-balancer-controller -n kube-system 명령으로 확인한 에러
해결 방법
kubectl patch ingress <name-of-the-ingress> -n <your-namespace> -p '{"metadata":{"finalizers":[]}}' --type=merge
출처:
https://github.com/kubernetes-sigs/aws-load-balancer-controller/issues/1629