tripleo-quickstart-extras/roles/standalone/templates/standalone.sh.j2
Alex Schultz cce534320c Add custom environment files for standalone
This change adds the ability to add additional environment files to the
standalone deployment.

Change-Id: I469380d5f401ed1aeeb104376d475673da07ccee
2018-11-09 09:20:24 +00:00

13 lines
538 B
Django/Jinja

sudo openstack tripleo deploy \
--templates \
--local-ip={{ standalone_ip }}/{{ standalone_network_prefix }} \
-e {{ overcloud_templates_path }}/environments/standalone/standalone-tripleo.yaml \
-r {{ overcloud_templates_path }}/roles/{{ standalone_role }} \
-e "{{ working_dir }}/containers-prepare-parameters.yaml" \
-e "{{ working_dir }}/standalone_parameters.yaml" \
{% if standalone_custom_env_files %}
-e {{ standalone_custom_env_files | join(' -e ') }} \
{% endif %}
--output-dir {{ working_dir }} \
--standalone