Reputation: 1204
I was going through the docs and found out the custom timeout configurations: https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/#custom-timeouts
But it doesn't say if there are any defaults and what are the values. Is it documented somewhere ?
Upvotes: 0
Views: 19710
Reputation: 5210
Given that NGINX Ingress Controller is open source, the safest bet would be looking at the repository. I believe the default values can be found in internal/ingress/controller/config/config.go.
Upvotes: 3
Reputation: 3075
Default value should be 60 seconds. This is the default socket timeout value.
Upvotes: 2