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

Automation Suite on Linux installation guide

Last updated Aug 25, 2025

Failure to configure email alerts post upgrade

Description

After upgrading from Automation Suite 2022.10, the continue field in Alertmanager's uipath-event-listener receiver configuration incorrectly remains set to false. This issue affects the configuration of email alerts and multiple receivers.

Solution

To fix the issue, you must manually set continue to true in the alertmanager-config-tmp secret:
  1. Retrieve the existing Alertmanager configuration in a file named am_config.yaml:
    kubectl get secret alertmanager-config -n cattle-monitoring-system -o jsonpath="{.data.alertmanager\.yaml}" | base64 --decode > am_config.yamlkubectl get secret alertmanager-config -n cattle-monitoring-system -o jsonpath="{.data.alertmanager\.yaml}" | base64 --decode > am_config.yaml
  2. Edit the am_config.yaml file and set the continue field value to true, as shown in the following example:
    docs image
  3. Encode the configuration to Base64 format:

    openssl base64 -A -in am_config.yaml > am_config_base64.yamlopenssl base64 -A -in am_config.yaml > am_config_base64.yaml
  4. Patch the alertmanager-config secret with the updated Base64 data:
    kubectl patch secret alertmanager-config -n cattle-monitoring-system -p $'{"data":{"alertmanager.yaml":"'$(<am_config_base64.yaml)'"}}'kubectl patch secret alertmanager-config -n cattle-monitoring-system -p $'{"data":{"alertmanager.yaml":"'$(<am_config_base64.yaml)'"}}'
  • Description
  • Solution

Was this page helpful?

Get The Help You Need
Learning RPA - Automation Courses
UiPath Community Forum
Uipath Logo
Trust and Security
© 2005-2025 UiPath. All rights reserved.