我们正在使用Istio在Google Kubernetes Engine上运行GRPC服务。我们已经完成了针对请求路由的不正确的设置。
进行GRPC服务调用时,我们收到以下错误消息: 上游连接错误或在标头之前断开连接/重置
请让我知道是否缺少某些内容或解决方法。
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: helloworld-gateway
spec:
selector:
istio: ingressgateway # use istio default controller
servers:
- port:
number: 50051
name: grpc
protocol: GRPC
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: helloworld
spec:
hosts:
- "*"
gateways:
- helloworld-gateway
http:
- match:
- port: 50051
route:
- destination:
host: helloworld
port:
number: 50051