【发布时间】:2020-07-01 03:31:32
【问题描述】:
在我们的 Kubernetes 集群中,我们需要在响应正文中进行字符串替换。 Istio 中是否有这样的东西用于响应内容修改。我只能找到标题操作。
Nginx Ingress Controller 可以做到这一点吗?
响应包含带有 href 的 html 内容:"/static/myimages/logo.png" 我们想修改此响应以在其前面加上 "/myapp/static/myimages/logo.png"
有没有人推荐可以重写此内容的网关。 你有样品要分享吗?
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: resource-manager
spec:
hosts:
- "*"
gateways:
- myapp-gateway
http:
- match:
- uri:
prefix: /myapp/
rewrite:
uri: "/"
route:
- destination:
host: myapp.voting.svc.cluster.local
port:
number: 9099
headers:
response:
add:
foo: bar
【问题讨论】:
标签: kubernetes kubernetes-ingress istio nginx-reverse-proxy nginx-ingress