Mixed version R/Q deploy -- don't use config download

There has been an inventory and templates change in R undercloud,
variable rename from role_name to tripleo_role_name, to avoid
conflicting with internal ansible vars. This makes the R undercloud
config-download mechanisms incompatible with Q templates.

Use --no-config-download when deploying Q OC with R UC to prevent
hitting this issue.

Change-Id: I0d5fc04f596787c77cac60656f52be76ac1b8829
Closes-Bug: #1771997
This commit is contained in:
Jiri Stransky 2018-05-18 12:36:41 +02:00
parent 606445bbb1
commit a7dc4fa424
1 changed files with 5 additions and 0 deletions

View File

@ -94,3 +94,8 @@ overcloud_roles:
- Storage
- StorageMgmt
- Tenant
config_download_args: >-
{% if overcloud_release is defined and overcloud_release in ['queens'] -%}
--no-config-download
{%- endif -%}