I\'m trying to change the client_max_body_size value, so my nginx ingress will not return 413 error.
client_max_body_size
I\'ve tested few solutions. Here is my test c
To set it globally, this configmap.md documentation might be helpful. Turns out the variable to set is proxy-body-size, not client-max-body-size.
proxy-body-size
client-max-body-size
When you deploy the helm chart, you can set --set-string controller.config.proxy-body-size="4m".
--set-string controller.config.proxy-body-size="4m"