Files
masakari/releasenotes/notes/add_ha_enabled_config_options-54a9270a5993d20a.yaml
bhagyashris 77f51c51a9 Fix release notes formatting
Formatted previously added release notes to avoid 'ScannerError'.
Also modified conf.py under releasenotes to generate releasenotes
as per standards and to remove occurrences of Glance snippet.

Closes-Bug: #1662445
Change-Id: Ie928d173c1ab4b512f303f6643da045d85a339c5
2017-02-15 12:18:25 +05:30

33 lines
1.4 KiB
YAML

---
features:
- |
Operators can decide whether all instances or only those instances which
contain metadata key 'HA_Enabled=True' should be allowed for evacuation
from a failed source compute node. When set to True, it will evacuate all
instances from a failed source compute node. First preference will be
given to those instances which contain 'HA_Enabled=True' metadata key,
and then it will evacuate the remaining ones. When set to False, it will
evacuate only those instances which contain 'HA_Enabled=True' metadata
key.
To use this feature, following config option need to be set under
``host_failure`` section in 'masakari.conf' file::
[host_failure]
evacuate_all_instances = True
- |
Operators can decide whether all instances or only those instances which
contain metadata key 'HA_Enabled=True' should be taken into account to
recover from instance failure events. When set to True, it will execute
instance failure recovery actions for an instance irrespective of whether
that particular instance contains metadata key 'HA_Enabled=True' or not.
When set to False, it will only execute instance failure recovery action
for an instance which contain metadata key 'HA_Enabled=True'.
To use this feature, following config option need to be set under
``instance_failure`` section in 'masakari.conf' file::
[instance_failure]
process_all_instances = True