Flag to observe live state for resources

Introduces a flag to enable heat engine to collect existing resource
live properties from reality and converge to updated template on a
stack update.

Change-Id: I0e5cc69600e3146c5a10fe6611a0577598c767eb
Implements: blueprint flag-to-enable-observe-reality
This commit is contained in:
Rakesh H S 2015-11-27 18:48:20 +05:30
parent f84d2ea795
commit efa46fa757
1 changed files with 6 additions and 1 deletions

View File

@ -162,7 +162,12 @@ engine_opts = [
default=False,
help=_('Enables engine with convergence architecture. All '
'stacks with this option will be created using '
'convergence engine .')),
'convergence engine.')),
cfg.BoolOpt('observe_on_update',
default=False,
help=_('On update, enables heat to collect existing resource '
'properties from reality and converge to '
'updated template.')),
cfg.StrOpt('default_software_config_transport',
choices=['POLL_SERVER_CFN',
'POLL_SERVER_HEAT',