Enable undercloud_enable_tempest to true for minimal

* Since tempest is runned using tempest container so
  undercloud_enable_tempest is set to be true so that it will enable
  tempest in undercloud.conf and pull tempest container on undercloud
  registry and reuse it from there while running it.

Change-Id: Ibe7e873f204679f25c09ea51b3818f7eed3b53e5
Closes-Bug: #1800682
This commit is contained in:
Chandan Kumar 2018-11-02 15:38:15 +05:30
parent 174d7f75b3
commit ebdc755397
1 changed files with 9 additions and 6 deletions

View File

@ -89,8 +89,7 @@ artcl_create_docs_payload:
- overcloud-deploy
- overcloud-deploy-post
- overcloud-validate
- "{% if run_tempest|bool -%}tempest-setup{%- endif -%}"
- "{% if run_tempest|bool and tempest_format|default('packages') == 'containers' -%}tempest_container{%- endif -%}"
- tempest-setup
included_static_docs:
- env-setup-virt
table_of_contents:
@ -104,8 +103,7 @@ artcl_create_docs_payload:
- overcloud-deploy
- overcloud-deploy-post
- overcloud-validate
- "{% if run_tempest|bool -%}tempest-setup{%- endif -%}"
- "{% if run_tempest|bool and tempest_format|default('packages') == 'containers' -%}tempest_container{%- endif -%}"
- tempest-setup
deploy_steps_ansible_workflow: >-
{% if release not in ['newton','ocata','pike'] -%}
@ -139,9 +137,14 @@ tempest_format: >-
packages
{%- endif -%}
undercloud_enable_tempest: >-
{% if release not in ['newton', 'ocata', 'pike', 'queens'] -%}
true
{%- else -%}
false
{%- endif -%}
# looking for a small set of tempest tests to validate
# tempest config and execution are working
run_tempest: true
test_white_regex: 'tempest.api.compute.admin'