Pass undercloud_connection in TripleoInventory instantiation.

The parameter undercloud_connection is being available as
an input option in the script, however it was not being passed
into the TripleoInventory object instantiation.

Change-Id: Ife819b1d807946c8e53deaacbb8e4f9361009f6e
Closes-Bug: #1832932
(cherry picked from commit b60bc84644)
This commit is contained in:
Jose Luis Franco Arza 2019-08-28 15:52:30 +02:00 committed by Jose Luis Franco
parent 83f84fa6cf
commit e62b8ee878
1 changed files with 1 additions and 0 deletions

View File

@ -140,6 +140,7 @@ def main():
ansible_ssh_user=configs.ansible_ssh_user, ansible_ssh_user=configs.ansible_ssh_user,
plan_name=configs.stack or configs.plan, plan_name=configs.stack or configs.plan,
ansible_python_interpreter=configs.ansible_python_interpreter, ansible_python_interpreter=configs.ansible_python_interpreter,
undercloud_connection=configs.undercloud_connection,
undercloud_key_file=configs.undercloud_key_file, undercloud_key_file=configs.undercloud_key_file,
host_network=configs.ssh_network) host_network=configs.ssh_network)