Ingress Time outs after 2 minutes even though time out is set to 3600s #10726
Labels
needs-kind
Indicates a PR lacks a `kind/foo` label and requires one.
needs-priority
needs-triage
Indicates an issue or PR lacks a `triage/foo` label and requires one.
triage/needs-information
Indicates an issue needs more information in order to work on it.
Issue Description
I have setup an ingress service to route requests to Selenium Grid , even though the requests are reached to grid que, it timeouts after 2 minutes , with below error response
<head><title>504 Gateway Time-out</title></head>
<body>
<center>504 Gateway Time-out</center>
</body>
</html>
Solutions tried
nginx.ingress.kubernetes.io/proxy-connect-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
Sample Ingress File
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: qlabv2-ingress
annotations:
`kubernetes.io/ingress.class: nginx
#nginx.ingress.kubernetes.io/app-root: /qlabv2
nginx.ingress.kubernetes.io/rewrite-target: /$2
nginx.ingress.kubernetes.io/use-regex: "true"
nginx.ingress.kubernetes.io/proxy-connect-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
spec:
rules:
- http:
paths:
- path: /sandbox_qlabv2(/|$)(.)
pathType: Prefix
backend:
service:
name: selenium-hub-service
port:
number: 80
- path: /(/?)(session/./se/vnc)
pathType: Prefix
backend:
service:
name: selenium-hub-service
port:
number: 80
The text was updated successfully, but these errors were encountered: