Wire in extra_nodes as a job param

In I84bfba3ee67cd5564ad0a4372c424a2622a97e6f I missed wiring in the
extra-nodes parameter to actually be passed in the job request.

Change-Id: Iacbf6a1fa4e5cd0e1515a79f672d8f3a3c24863f
This commit is contained in:
Ben Nemec 2018-01-23 16:06:47 +00:00
parent 0b11de2618
commit 6369985369
1 changed files with 1 additions and 0 deletions

View File

@ -201,6 +201,7 @@ def main(args=sys.argv[1:]):
"create_undercloud": "true" if opts.create_undercloud else "",
"ssh_key":opts.ssh_key,
"net_iso":opts.net_iso,
"extra_nodes":opts.extra_nodes,
"job_identifier":job_identifier,
}
job = gear.Job('lockenv', json.dumps(job_params))