I have set up a GRPC gateway with all the methods corresponding to HTTP URLs. e.g. v1/my-service
. These paths do not seem to work for the ingress I have set up. I can send a request indirectly by using another pod to route the requests to this URL using the internal cluster IP however when I try to go directly my-ip/v1/myservice I get a server error with little description:
Error: Server Error</h1>
<h2>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.
Is there a reason why this occurs? I can't see why I get server errors this way when I know that the incoming URL format corresponds to the method defined in the gateway. I would like to point out that my ingress definitely works as I am simply using this intermediary pod to route the successful requests but I am still sending them through the ingress.
Possibly, you need the annotation on your Ingress resource(?):
and the HTTP/2 ingress controller ConfigMap option(?):
Also, check the
nginx.conf
in the Nginx ingress controller pod:You want to check that something like this is configured at the server level: