a67e0c5038
Currently on master error instances are evacuated from failed compute host and stopped at the destination host after evacuation. Some operators may not want to evacuate error instances in some cases like below: If user is running 1ACT/n SBY application on instances, launching error instances will cause unexpected effect. This patch adds a new config option 'ignore_instances_in_error_state' under [host_failure] section which makes the recovery of error instances configurable. If this config option set to True, masakari will skip the recovery of error instances otherwise it will evacuate error instances from a failed source compute node along with other instances. The default value for this config option is set to False. Change-Id: I24f8282357f28544fd1b56f270da22c7329a9f3d
18 lines
686 B
YAML
18 lines
686 B
YAML
---
|
|
features:
|
|
- |
|
|
Operators can decide whether error instances should be allowed for
|
|
evacuation along with other instances from a failed source compute node
|
|
or not. Added a new config option ``ignore_instances_in_error_state`` to
|
|
achieve this. When set to True, masakari will skip the recovery of error
|
|
instances otherwise it will evacuate error instances as well from a failed
|
|
source compute node.
|
|
|
|
To use this feature, following config option need to be set under
|
|
``host_failure`` section in 'masakari.conf' file::
|
|
|
|
[host_failure]
|
|
ignore_instances_in_error_state = False
|
|
|
|
The default value for this config option is set to False.
|