From ea1b4858ddca1790f45de2e06939d8e35af07800 Mon Sep 17 00:00:00 2001 From: Vasil Ilchev Date: Tue, 27 Jan 2026 11:14:01 +0200 Subject: [PATCH] Added doc for new Pause Success Action (#2877) Signed-off-by: vasilchev --- docs/rollout-management.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/rollout-management.md b/docs/rollout-management.md index 93b1ee2a5..29fac2e7e 100644 --- a/docs/rollout-management.md +++ b/docs/rollout-management.md @@ -36,9 +36,10 @@ The following capabilities are currently supported by the _Rollout Management_: The cascading execution of the deployment groups is based on two thresholds that can be defined by the rollout creator. -- success condition by means of percentage of successfully installed targets in the current groups triggers. -- error condition by means of absolute or percentage of failed installations which triggers an emergency shutdown of the - entire rollout. +- **Success Condition**: Defined by the percentage of successfully installed targets in the current group. When this threshold is reached, a success action is executed. + - (Default) **NextGroup** success action, enabling a fully cascading rollout, starting the next group automatically. + - **Pause** success action allows the rollout to pause after a group’s success condition is met, enabling additional external verification or manual checks before proceeding. The rollout will await a manual resume action, which then starts the next group. +- **Error Condition**: Defined by an absolute number or percentage of failed installations. This triggers an emergency shutdown of the entire rollout. ---