UiPath Documentation
automation-suite
2023.10
false
UiPath logo, featuring letters U and I in white

Automation Suite on Linux installation guide

Last updated Mar 26, 2026

Configuring appSettings

Adding and changing appSettings

You can configure the Orchestrator settings in the appsettings.json file. If the file does not already exist, you can create it yourself. To modify the settings, take the following steps:

  1. Place the new values inside an appsettings.json file. Make sure to use the format shown in the following example:
    {
        "EncryptionKeyPerTenant.Enabled": "true",
        "Triggers.DisableWhenFailedCount": "20",
        "Triggers.JobsCountStrategy": "NoLimit"
    }
    {
        "EncryptionKeyPerTenant.Enabled": "true",
        "Triggers.DisableWhenFailedCount": "20",
        "Triggers.JobsCountStrategy": "NoLimit"
    }
    
  2. Use the Orchestrator Configurator Tool to update the configuration. The following command merges the keys in the custom appsettings.json with the settings already present in the orchestrator-customconfig config map. Note that the command does not remove any existing settings.
    ./orchestrator_configurator.sh -c appsettings.json
    ./orchestrator_configurator.sh -c appsettings.json
    

Removing appSettings

appSettings are stored under the values.json key of the orchestrator-customconfig config map in the uipath namespace. You can remove any unnecessary appSettings using kubectl or a similar tool.

Example of values.json in the orchestrator-customconfig config map:

{
  "AppSettings" : {
    "EncryptionKeyPerTenant.Enabled": "true",
    "Triggers.DisableWhenFailedCount": "20",
    "Triggers.JobsCountStrategy": "NoLimit"
  },
  "Kestrel" : {
     ...
  }
}
{
  "AppSettings" : {
    "EncryptionKeyPerTenant.Enabled": "true",
    "Triggers.DisableWhenFailedCount": "20",
    "Triggers.JobsCountStrategy": "NoLimit"
  },
  "Kestrel" : {
     ...
  }
}
  • Adding and changing appSettings
  • Removing appSettings

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated