Posts

Showing posts from June, 2020

Kubernetes - 413 Request Entity Too Large

While configuring the NGINX Ingress Controller, you may face some issues with file upload requests. Using annotations you can customize various configuration settings.  In the case of nginx upload limits, use the annotation below: nginx.ingress.kubernetes.io/proxy-body-size: "0" This annotation removes any restriction on upload size. Of course, you can set this to a size appropriate to your situation, 0 means unlimited. I will update this blogpost when I get some free time, till then happy reading!