Shraddha Bang
Shraddha Bang
@fcastello Have you looked at using [TargetGroupBinding](https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.6/guide/targetgroupbinding/targetgroupbinding/) CRD?
@onion1984 We will be supporting this in our upcoming minor release. Meanwhile have you looked at using the [TargetGroupBinding](https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.7/guide/targetgroupbinding/targetgroupbinding/) ?
> > @ikosenn, please check the error [here](https://prow.k8s.io/view/gs/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_aws-load-balancer-controller/3479/pull-aws-load-balancer-controller-e2e-test/1754325834090418176#1:build-log.txt%3A1967), looks introduced by this PR `{"level":"error","ts":"2024-02-05T03:26:44Z","msg":"Reconciler error","controller":"ingress","object":{"name":"e2e-group.aa96c17f"},"namespace":"","name":"e2e-group.aa96c17f","reconcileID":"9b7875ec-ad84-47e1-b09e-af5d2f140af8","error":"admission webhook \"vtargetgroupbinding.elbv2.k8s.aws\" denied the request: TargetGroupBinding update may not change these fields: spec.vpcId"}` > I...
The priority on the rules is decided on the PathType. The prefix type take higher priority here than the implementations specific. https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.7/guide/ingress/spec/#ingress-specification Have you tried setting appropriate pathtype on your...
@jfly Have you tried removing the finalizer on your ingress and try to see if the controller then deletes this ingress for you? Also if possible could you please provide...
@ivange94 We have already merged the PR for this issue. You can pick any other [good-first-issue](https://github.com/kubernetes-sigs/aws-load-balancer-controller/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) which does not have a PR yet and assign it to yourself. We appreciate...
/lgtm /approve
Hello @kylebisley , Have tried using this configuration to expose [multiple ports](https://kubernetes.io/docs/concepts/services-networking/service/#multi-port-services) for your service on NLB ``` apiVersion: v1 kind: Service metadata: name: my-service annotations: service.beta.kubernetes.io/aws-load-balancer-type: external service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing...