Add ability to specify undercloud install command

In Stein we've dropped the undercloud install via instack so we need to
be able to override the command so that we can properly continue
testing instack-undercloud.

Change-Id: Ic13488cbebe2ec5fb3a60f04898c3af12280d62c
Related-Blueprint: remove-instack-undercloud
This commit is contained in:
Alex Schultz 2018-09-27 08:22:04 -06:00
parent 1ed49fb498
commit 0a63a77f54
3 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@ user sessions to provide greater flexixiblity to our users. ** additional docume
https://docs.openstack.org/tripleo-quickstart/latest/accessing-libvirt.html
- `undercloud_conf_extra`: <''> -- extra options to be added to ~/undercloud.conf
- `undercloud_extra_args`: <''> -- extra options for undercloud deploy command.
- `undercloud_install_cmd`: <'openstack undercloud install'> -- command used to install the undercloud
- `undercloud_install_cli_options`: <''> -- extra options for undercloud install command.
- `undercloud_enable_mistral`: <'true'> -- sets up the 'enable_mistral' option
in undercloud.conf.

View File

@ -1,6 +1,7 @@
---
undercloud_config_file: undercloud.conf.j2
undercloud_install_cmd: openstack undercloud install
undercloud_install_cli_options: ""
undercloud_post_install_script: undercloud-install-post.sh.j2
undercloud_install_log: "{{ working_dir }}/undercloud_install.log"

View File

@ -11,6 +11,6 @@ set -eux
export {{ var }}
{% endfor %}
openstack undercloud install {{ undercloud_install_cli_options }}
{{ undercloud_install_cmd }} {{ undercloud_install_cli_options }}
### --stop_docs