Merge "Don't run ephemeral heat for non enabled scenarios"

This commit is contained in:
Zuul
2021-06-03 18:46:33 +00:00
committed by Gerrit Code Review

View File

@@ -62,10 +62,11 @@ fi
## * Deploy the overcloud! ## * Deploy the overcloud!
## :: ## ::
openstack overcloud deploy --stack {{ stack_name }} {% if release is not in ['newton', 'ocata', 'pike', 'queens'] %}--override-ansible-cfg {{ working_dir }}/custom_ansible.cfg{% endif %} \ openstack overcloud deploy --stack {{ stack_name }} \
--templates {{overcloud_templates_path}} \ {% if release is not in ['newton', 'ocata', 'pike', 'queens'] %}--override-ansible-cfg {{ working_dir }}/custom_ansible.cfg{% endif %} \
{{ deploy_args | regex_replace("\n", " ") }} \ {% if release not in ['queens', 'stein', 'train', 'ussuri', 'victoria'] and not (ephemeral_heat|bool) %}--heat-type installed{% endif %} --templates {{overcloud_templates_path}} \
"$@" && status_code=0 || status_code=$? {{ deploy_args | regex_replace("\n", " ") }} \
"$@" && status_code=0 || status_code=$?
### --stop_docs ### --stop_docs