Pass plan/stack name into config_download workflow

Without this --config-download won't work with any non-default
--stack argument.

Conflicts:
	tripleoclient/workflows/deployment.py

Change-Id: I3bde2a1526326c5d97cc1750d078b86b329ae84b
Depends-On: I24345a5b8a106ef0a166764a926159e109c4494e
Closes-Bug: #1755525
(cherry picked from commit 23323867d8)
This commit is contained in:
Steven Hardy 2018-03-13 15:56:23 +00:00
parent 08cce76602
commit 10b52d58ae
1 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,8 @@ def config_download(log, clients, stack, templates, deployed_server,
tripleoclients = clients.tripleoclient
workflow_input = {
'verbosity': verbosity
'verbosity': verbosity,
'plan_name': stack.stack_name
}
if output_dir:
workflow_input.update(dict(work_dir=output_dir))