Hello Harsh Oza
Welcome to Microsoft Q&A Platform, thanks for posting your query here.
To increase the maximum file upload size for Semarchy on Azure Kubernetes Service, you need to update the configuration of the Kubernetes Ingress resource that is routing traffic to your Semarchy deployment.
Locate the Kubernetes Ingress resource that is routing traffic to your Semarchy deployment.
kubectl get ingress -n <namespace>
Edit the Ingress resource by running the following command:
kubectl edit ingress <ingress-name> -n <namespace>
Add the following annotations to the Ingress resource:
nginx.ingress.kubernetes.io/client-max-body-size: "50m"
nginx.ingress.kubernetes.io/proxy-body-size: "50m"
Replace "50m"
with the maximum file size (in megabytes) that you want to allow for file uploads.
Once the above configuration of the Kubernetes Ingress controller are saved, it will allow larger file uploads to your Semarchy deployment.
Hope this helps.