Merge "Add options to disable migration in host maintenance"

This commit is contained in:
Zuul
2025-08-21 14:11:22 +00:00
committed by Gerrit Code Review
10 changed files with 984 additions and 19 deletions

View File

@@ -0,0 +1,17 @@
---
features:
- |
The Host Maintenance strategy now supports two new input parameters:
``disable_live_migration`` and ``disable_cold_migration``. These
parameters allow cloud administrators to control whether live, cold or
no migration should be considered during host maintenance operations.
* If ``disable_live_migration`` is set, active instances will be cold
migrated if ``disable_cold_migration`` is not set, otherwise active
instances will be stopped.
* If ``disable_cold_migration`` is set, inactive instances will not be
cold migrated.
* If both are set, only stop actions will be applied on active instances.
A new `stop` action has been introduced and registered to support
scenarios where migration is disabled.