Skip to main content
Version: 2.16.0

Configuration changes

Several services expose configurable settings that can be tailored to your deployment. The sections below describe the available configuration values for each service.

Updating configuration

Configuration values are set as Helm chart parameters at deployment time using the following syntax:

--set configuration.<configuration key>=<configuration value>

Example

To set aspnetcore_shutdowntimeoutseconds to 90 seconds and ratelimiting__maxmessagecount to 300 messages, use the following Helm command:

helm upgrade --install cdrplatform-sync-api cdrplatform-sync-api \
--set configuration.ASPNETCORE_SHUTDOWNTIMEOUTSECONDS=90 \
--set configuration.RATELIMITING__MaxMessageCount=300