How to route request with dynamic value in gloo ingress controller

234 views Asked by At

How do I route the request that contains some dynamic part. For example I'd like request

/v1/employees/{empid}/reports

to be be routed to:

/my/host/v1/employees/{empid}/reports

Here {empid} is dynamic (alphanumeric) and changes from request to request. regex looks like would help with matching the URL pattern but how do I pass that dynamic value to downstream?

0

There are 0 answers