NRJ
NRJ

Reputation: 1204

Default timeout values for Kubernetes ingress

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

Answers (2)

Riwen
Riwen

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

Prateek Jain
Prateek Jain

Reputation: 3075

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

Upvotes: 2

Related Questions