如何在istio的目标规则中使用匹配的URI的一部分?
尝试实现以下目标:
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
spec:
http:
- match:
- uri:
regex: "^/foo/(.+)/?$"
route:
- destination:
host: bar-$1
port:
number: 80
答案 0 :(得分:0)
据我所知这是根本不可能的。 无法为此提供任何确认链接。 过去也有类似的问题: can istio support route to different service by dynamic part of uri path