Wondering, ALB ingress redirection is working for ...
# flyte-support
c
Wondering, ALB ingress redirection is working for anyone.
<http://alb.ingress.kubernetes.io/actions.app-root|alb.ingress.kubernetes.io/actions.app-root>: '{"Type": "redirect", "RedirectConfig":  {"Path": "/console", "StatusCode": "HTTP_302"}}'
I see this in the ingress, however it don't seems to be working for me.
Any help would be much appreciated.
for anyone looking at this, seems like adding this to the ingress make the redirect works.
Copy code
- path: /
        pathType: ImplementationSpecific
        backend:
          service:
            name: "app-root"
            port:
              name: use-annotation
thx 1