How to make load balancing for GRPC services on GKE on L7 (with Ingress over HTTP/2 + TLS)?
I know that I have the option to use L4 (TCP layer) to configure Service with "LoadBalancer" type. But I want to know if I can use Ingress + L7 load balancing over HTTP/2+TLS.
Also I see "HTTP/2 to backends is not supported for GKE." (on https://cloud.google.com/load-balancing/docs/backend-service#HTTP2-limitations). But I don't know it's actual or not.
Ingress
. :) But you can try to mimic what Ingress is actually doing on GCP network API objects and try recreating that with HTTP/2 port yourself but I don't recommend it. For now I recommend doing L4 for a short while. :) – Ahmet Alp Balkan