controller -> detailed (#1201)

Signed-off-by: Paige Patton <prubenda@redhat.com>
This commit is contained in:
Paige Patton
2026-03-26 08:47:06 -04:00
committed by GitHub
parent 3db5e1abbe
commit c8aa959df2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ kraken:
- scenarios/kubevirt/kubevirt-vm-outage.yaml
resiliency:
resiliency_run_mode: standalone # Options: standalone, controller, disabled
resiliency_run_mode: standalone # Options: standalone, detailed, disabled
resiliency_file: config/alerts.yaml # Path to SLO definitions, will resolve to performance_monitoring: alert_profile: if not specified
cerberus:
+1 -1
View File
@@ -306,7 +306,7 @@ class Resiliency:
prom_cli: Pre-configured KrknPrometheus instance.
total_start_time: Start time for the full test window.
total_end_time: End time for the full test window.
run_mode: "controller" or "standalone" mode.
run_mode: "detailed" or "standalone" mode.
Returns:
(detailed_report)
+1 -1
View File
@@ -95,7 +95,7 @@ def main(options, command: Optional[str]) -> int:
run_signal = get_yaml_item_value(config["kraken"], "signal_state", "RUN")
resiliency_config = get_yaml_item_value(config,"resiliency",{})
# Determine execution mode (standalone, controller, or disabled)
# Determine execution mode (standalone, detailed, or disabled)
run_mode = get_yaml_item_value(resiliency_config, "resiliency_run_mode", "standalone")
valid_run_modes = {"standalone", "detailed", "disabled"}
if run_mode not in valid_run_modes: