SpiceDB & GKE Ingress
# spicedb
m
Hi all, we have spicedb running in GKE, until now we didn't have TLS and used
zed context set local <externalLoadBalancerIp>:80 <api_key> --insecure
for connecting. Now, we set up an GKE Ingress with TLS and use spicedb-service (now ClusterIP) port 50051 as backend for our domain. So, connecting with
zed context set local <our-domain.com>:443 <api_key>
is not working, doing
zed schema read
shows the following error:
Copy code
Error: rpc error: code = Unavailable desc = unexpected HTTP status code received from server: 502 (Bad Gateway); transport: received unexpected content-type "text/html; charset=UTF-8"
Do you know if is required to do some extra config for GKE Ingress for gRPC? Also I understand that we have to configure TLS in the spicedb cluster itself, right?
v