istio 可以重写 HTTLS/TLS 流量吗?

Can istio rewrite HTTLS/TLS traffic?

根据他们的文档TLSRoute it does not include rewrite that you typically do for HTTPRoute`

是否可以对 HTTPS 或 TLS 执行相同的操作?

  http:
  - match:
    - uri:
        prefix: /ratings
    rewrite:
      uri: /v1/bookRatings
    route:
    - destination:
        host: ratings.prod.svc.cluster.local

当 TLS 流量未终止时,流量(包括重写所需的 URL 部分)被加密,因此 Istio 无法读取或操作它。因此,这些选项不可用。