Want to add the below entry in ingress-nginx conf file:
limit_req_zone $binary_remote_addr zone=one:10m rate=30r/m;
nginx.conf should look like:
limit_req_zone $binary_remote_addr zone=one:10m rate=30r/m;
server {
# ...
location /login.html {
limit_req zone=one;
# ...
}
}
I am not sure why you want to do it via helm chart, anyway there are three ways to customize NGINX ingress: