-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTPRoute set a timeout #1612
Comments
Is this for a specific implementation which you're using, or is this something you're trying to implement? |
@shaneutt It's for an implementation I am using. Here is the yaml for my HTTPRoute:
The service I just want the option to be able to increase the timeout from the default 30 seconds to allow me to keep the WebSocket open for a longer time. |
Understood. At present, we consider things like timeouts to be https://gateway-api.sigs.k8s.io/references/policy-attachment/ So if you can tell me which implementation your using I might be able to help determine how (and I suppose if) they implemented this and where the documentation is for that. |
Ah, I understand. That makes sense to me now. Sorry for my stupidity earlier. So I am using the
I have tried to use the
Here is a link to the GCP documentation that I've found: Am I missing some step here? |
When I say implementation, I mean the software which implements the APIs in https://gateway-api.sigs.k8s.io/implementations/ Gateway API is a specification which vendors can implement, it does nothing useful without some implementation of it deployed on the cluster (think similarly to StorageClass provisioners in that regard). In this case your implementation would appear to be GKE. But note that this repository is not directly associated with Google or GKE and Google provides support for their Gateway API implementation separately (see #1275 (comment)). I recommend reaching out to their support, which as I understand it is via gke-gateway-feedback@google.com as I don't believe they have a Github repo currently. |
Yes, it should be GKE. Thanks for clearing up some stuff for me in regard to this issue. /close |
@itetradev: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
What would you like to be added:
I would like an option to set a custom timeout. I have only found this comment referencing timeout saying that they aren't supported. It mentions an alternative of how to implement them but the link provided just leads to a 404 page.
Why this is needed:
I have a WebSocket API and I need to increase the default timeout of 30s of HTTPRoute. It is not compatible with WebSockets as it drops the connection every 30s.
The text was updated successfully, but these errors were encountered: