Hi Everyone! I deployed a helm release using Pulum...
# kubernetes
g
Hi Everyone! I deployed a helm release using Pulumi Python on EKS and enabling LoadBalancer on a service to bring up an ELB on AWS. Now when I do a pulumi destroy, the release gets stuck and gets removed only when I remove the finalizer on the service. I have tried couple of helm charts (nginx ingress controller and mariadb). Is there a way I can force delete a helm release via Pulumi?
c
$ kubectl patch crd/targetgroupbindings.elbv2.k8s.aws -p '{"metadata":{"finalizers":[]}}' --type=merge
or similar to remove the finalizers from the correct object