diff --git a/config/config.yaml b/config/config.yaml index 0dac6585..e45cdc1d 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -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: diff --git a/krkn/resiliency/resiliency.py b/krkn/resiliency/resiliency.py index f6cad1ae..367e4e9c 100644 --- a/krkn/resiliency/resiliency.py +++ b/krkn/resiliency/resiliency.py @@ -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) diff --git a/run_kraken.py b/run_kraken.py index 1bb8dd74..dda96d76 100644 --- a/run_kraken.py +++ b/run_kraken.py @@ -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: