Merge "Use nova-less deploy by default"

This commit is contained in:
Zuul 2020-09-04 19:10:00 +00:00 committed by Gerrit Code Review
commit ea820055ac
2 changed files with 8 additions and 2 deletions

View File

@ -103,7 +103,12 @@ validate_services: false
baremetal_provision: false
# If `undercloud_enable_nova` is `true`, the undercloud will have running glance and nova services
undercloud_enable_nova: true
undercloud_enable_nova: >-
{% if release in ['queens', 'rocky', 'stein', 'train', 'ussuri'] -%}
true
{%- else -%}
false
{%- endif %}
# Set the location for the downloaded amphora image when download_amphora is true
octavia_amphora_path: >-

View File

@ -5,7 +5,8 @@
- name: {{ role }}
count: {{ role_count }}
{% if role_profile %}
profile: {{ role_profile }}
defaults:
profile: {{ role_profile }}
{% endif %}
{% endif %}
{% endfor %}