skip to Main Content

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 ?

2

Answers


  1. Default value should be 60 seconds. This is the default socket timeout value.

    Login or Signup to reply.
  2. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search