automation-suite
2024.10
true
- Overview
- Requirements
- Pre-installation
- Installation
- Post-installation
- Migration and upgrade
- Monitoring and alerting
- Cluster administration
- Product-specific configuration
- Troubleshooting
Configuring the maximum request size
Automation Suite on EKS/AKS Installation Guide
Last updated Dec 18, 2024
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 MiB, 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": {
...
}
}