Home > Enterprise >  Default timeout values for Kubernetes ingress
Default timeout values for Kubernetes ingress

Time:09-28

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 ?

CodePudding user response:

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.

CodePudding user response:

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

  • Related