Run RDO jobs with baremetal provisioning

The next change in this series will switch of the nova and glance in
the undercloud.

Change-Id: I70064a697b1fca0c60055f13ae8ecba6f9fa6fa0
Blueprint: nova-less-deploy
Depends-On: https://review.opendev.org/705052
This commit is contained in:
Steve Baker 2019-09-06 16:30:35 +12:00 committed by Sagi Shnaidman
parent d113a69f86
commit b56d9d8155
2 changed files with 20 additions and 0 deletions

View File

@ -75,6 +75,9 @@ extra_args: >-
{% if release not in ['newton', 'ocata', 'pike'] %}
-e {{ overcloud_templates_path }}/ci/environments/ovb-ha.yaml
{% endif %}
{% if release not in ['newton','ocata','pike','queens','rocky','stein','train'] -%}
--disable-validations
{%- endif -%}
undercloud_ntp_servers: pool.ntp.org
# keep the doc gen settings at the bottom of the config file.
@ -208,3 +211,10 @@ undercloud_enable_tempest: >-
tempest_extra_config: {'compute_feature_enabled.config_drive': 'True'}
baremetal_provision: >-
{% if release in ['newton','ocata','pike','queens','rocky','stein','train'] -%}
false
{%- else -%}
true
{%- endif -%}

View File

@ -75,6 +75,9 @@ extra_args: >-
{% if release not in ['newton', 'ocata', 'pike'] %}
-e {{ overcloud_templates_path }}/ci/environments/ovb-ha.yaml
{% endif %}
{% if release not in ['newton','ocata','pike','queens','rocky','stein','train'] -%}
--disable-validations
{%- endif -%}
# keep the doc gen settings at the bottom of the config file.
# options below direct automatic doc generation by tripleo-collect-logs
@ -162,3 +165,10 @@ grafana_enabled: false
statsd_enabled: false
rsyslog_forwarding: false
browbeat_config_file: browbeat-minimal-ci.yaml.j2
baremetal_provision: >-
{% if release in ['newton','ocata','pike','queens','rocky','stein','train'] -%}
false
{%- else -%}
true
{%- endif -%}