Reputation: 457
I was trying to increase the timeout for Nginx ingress.
nginx.ingress.kubernetes.io/proxy-connect-timeout: "180"
nginx.ingress.kubernetes.io/proxy-read-timeout: "180"
nginx.ingress.kubernetes.io/proxy-send-timeout: "180"
I am curious about knowing what maximum value I can have for these timeouts.
proxy-connect-timeout
, proxy-read-timeout
and proxy-send-timeout
.
I have tried to find it but not able to do so.
Upvotes: 1
Views: 3416
Reputation: 44569
From the docs here
proxy_connect_timeout
Defines a timeout for establishing a connection with a proxied server. It should be noted that this timeout cannot usually exceed 75 seconds
Upvotes: 2