summaryrefslogtreecommitdiff
path: root/heatclient/osc
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/osc')
-rw-r--r--heatclient/osc/v1/stack.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/heatclient/osc/v1/stack.py b/heatclient/osc/v1/stack.py
index 89540d2..4a0c52e 100644
--- a/heatclient/osc/v1/stack.py
+++ b/heatclient/osc/v1/stack.py
@@ -282,6 +282,11 @@ class UpdateStack(command.ShowOne):
help=_('Wait until stack goes to UPDATE_COMPLETE or '
'UPDATE_FAILED')
)
+ parser.add_argument(
+ '--converge',
+ action='store_true',
+ help=_('Stack update with observe on reality.')
+ )
return parser
@@ -361,6 +366,9 @@ class UpdateStack(command.ShowOne):
limit=1)
marker = events[0].id if events else None
+ if parsed_args.converge:
+ fields['converge'] = True
+
client.stacks.update(**fields)
if parsed_args.wait: