Open RobinFrcd opened 4 months ago
Have you tried using the TargetGroupBinding for your service? You can then use this target group to be attached to your ingress using actions. Can you please try this configuration and see if this helps your case?
Thank you for your answer ! But it needs a targetGroupARN
to be set right ? So I would need to create a first ingress, find a way to get its target group ARN and then, based on that, start another ingress using this targetGroupARN
. Can't be done in a single deployment.
Thanks again for your help !
The Kubernetes project currently lacks enough contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues.
This bot triages un-triaged issues according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
Hi, I have to expose a service in multiples ways (OIDC, IP filtering, etc..) but to do that I have to create multiple
Ingress
es. Every time I create a newIngress
, it creates a new target group, and I reached the number of target groups attached to my ALB:You have reached the maximum number of unique target groups that you can associate with a load balancer of type 'application': [100]
. Is there a way to share target groups between Ingresses ? To have 1 service = 1 target group ?Example: I have a service I want to expose in 2 ways:
alb.ingress.kubernetes.io/auth-type: oidc
alb.ingress.kubernetes.io/conditions.svc: > [{"field":"source-ip", "sourceIpConfig":{"values": ...}}]
This needs 2 different ingresses, but both are pointing to the same service. It results in 2 target groups, where it could work with only one.
Thanks !
Environment
v2.8.1
1.30
eks.2