tripleo-quickstart-extras/roles/undercloud-deploy/templates/undercloud-install.sh.j2
Alex Schultz 0a63a77f54 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
2018-09-27 08:22:04 -06:00

17 lines
270 B
Django/Jinja

#!/bin/bash
set -eux
### --start_docs
## Installing the undercloud
## =========================
## ::
{% for var in (undercloud_env_vars|default([])) %}
export {{ var }}
{% endfor %}
{{ undercloud_install_cmd }} {{ undercloud_install_cli_options }}
### --stop_docs