automation-suite
2024.10
true
- Overview
- Requirements
- Pre-installation
- Preparing the installation
- Installing and configuring the service mesh
- Downloading the installation packages
- Configuring the OCI-compliant registry
- Granting installation permissions
- Installing and configuring the GitOps tool
- Deploying Redis through OperatorHub
- Applying miscellaneous configurations
- Running uipathctl
- Installation
- Post-installation
- Migration and upgrade
- Upgrading Automation Suite
- Migrating standalone products to Automation Suite
- Step 1: Restoring the standalone product database
- Step 2: Updating the schema of the restored product database
- Step 3: Moving the Identity organization data from standalone to Automation Suite
- Step 4: Backing up the platform database in Automation Suite
- Step 5: Merging organizations in Automation Suite
- Step 6: Updating the migrated product connection strings
- Step 7: Migrating standalone Orchestrator
- Step 8: Migrating standalone Insights
- Step 9: Deleting the default tenant
- Performing a single tenant migration
- Migrating between Automation Suite clusters
- Cluster administration
- Product-specific configuration
- Troubleshooting
Configuring the maximum request size

Automation Suite on OpenShift installation guide
Last updated May 30, 2025
Configuring the maximum request size
You can configure the maximum request size in the
orchestrator-customconfig
config map using a tool such as kubectl
.
The default value for the maximum request size is 300 MB, but you can edit it in the
values.json
file. The Orchestrator deployment should restart automatically after this configuration change.
{
"Kestrel": {
"Limits": {
"MaxRequestBodySize": 314572800
}
}
}
{
"Kestrel": {
"Limits": {
"MaxRequestBodySize": 314572800
}
}
}
The
values.json
file in the orchestrator-customconfig
config map may also contain other values, such as AppSettings
. You must not remove any other settings when configuring the maximum request size.
{
"Kestrel": {
...
},
"AppSettings": {
...
}
}
{
"Kestrel": {
...
},
"AppSettings": {
...
}
}