h3poteto / istio-grpc-example

gRPC server on Istio on kubernetes
12 stars 4 forks source link

istio gateway grpc #1

Open maondra opened 4 years ago

maondra commented 4 years ago

I am trying to setup istio Gateway with GRPC. I have used your code as example a modified it: added the gateway: ` kind: Gateway metadata: name: my-gateway namespace: istio-grpc-example spec: selector: istio: ingressgateway servers:

and modified the VirtualService:

` apiVersion: networking.istio.io/v1alpha3 kind: VirtualService metadata: name: backend namespace: istio-grpc-example spec: hosts:

I am trying to setup ISTIO Gateway with GRPC. I am using example from:https://github.com/h3poteto/istio-grpc-example.

This example does not contain Gateway. I added the Gateway:

kind: Gateway metadata: name: my-gateway namespace: istio-grpc-example spec: selector: istio: ingressgateway servers:

and modified the VirtualService:

apiVersion: networking.istio.io/v1alpha3 kind: VirtualService metadata: name: backend namespace: istio-grpc-example spec: hosts:

Do you know: Is there something else I should do? I still cannot go through Gateway… Received an error when querying services endpoint.

Thank you!

porjo commented 3 years ago

Did you find an answer?