Can someone help me setup websocket (for use with ...
# google-cloud
l
Can someone help me setup websocket (for use with SignalR) on GKE? Whatever I do the connection timeouts after 30 seconds...
I'm using ingress
g
We use Cloud Run and had the same issue. We had to set our max timeout to be 3600 seconds.
Copy code
const apService = new gcp.cloudrunv2.Service(
    'api-service',
    {
      ingress: 'INGRESS_TRAFFIC_ALL',
      location: gcpRegion,
      template: {
        timeout: `${60 * 60}s`,
        ...
l
Will try with that.
Thanks 🙂