Replies: 1 comment 2 replies
|
Can you use the Gateway API implementation for this? https://kubernetes-sigs.github.io/aws-load-balancer-controller/latest/guide/gateway/l7gateway/ Rule level settings don't really work in the Ingress API. |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'd like to set transforms only for some rules and not all of them.
As far as I can tell, for the transforms annotation
alb.ingress.kubernetes.io/transforms.${transforms-name}, the transforms-name must be the service name. Thus, the transform gets automatically applied to every listener rule.Background: I want to set an ALB to listen to both
service.example.comandexample.com/apis/service. The subdomain is the existing URL, and we want to migrate to the path, but in the mean time we'd like to listen to both. For the subdomain, we should redirect to the path, then for the path we need to rewrite the path to strip the/serviceprefix (eg./apis/service/footo/foo).I was able to configure this manually, but am stumped at the annotations.
I want something along the lines of
Am I missing something, or is it not possible?
All reactions