kubernetes nginx ingress controller disable HTTP 200 log

3/6/2020

is there any way to disable the HTTP 200 logging at the nginx ingress controller? It takes too much disk space and this requires a lot of maintenance.

thank you.

-- user10573594
kubernetes
logging
nginx-ingress

1 Answer

3/6/2020

As mentioned in here https://kubernetes.github.io/ingress-nginx/troubleshooting/#debug-logging

log-level can be configured in the deployment by using the flag --v=X try with the levels --v=0, --v=1, --v=2... and use which makes sense to you.

-- Tummala Dhanvi
Source: StackOverflow