Merge "use include_tasks instead of include"

This commit is contained in:
Zuul 2018-09-16 16:59:50 +00:00 committed by Gerrit Code Review
commit 1147a535ac

View File

@ -14,25 +14,25 @@
# limitations under the License. # limitations under the License.
# Prepare the user ssh keys # Prepare the user ssh keys
- include: common/test-prepare-keys.yml - import_playbook: common/test-prepare-keys.yml
# Prepare the host # Prepare the host
- include: common/test-prepare-host.yml - import_playbook: common/test-prepare-host.yml
# Prepare the containers # Prepare the containers
- include: common/test-prepare-containers.yml - import_playbook: common/test-prepare-containers.yml
# Install haproxy # Install haproxy
- include: common/test-install-haproxy.yml - import_playbook: common/test-install-haproxy.yml
# Install RabbitMQ/MariaDB # Install RabbitMQ/MariaDB
- include: common/test-install-infra.yml - import_playbook: common/test-install-infra.yml
# Install Keystone # Install Keystone
- include: common/test-install-keystone.yml - import_playbook: common/test-install-keystone.yml
# Install and execute Tempest # Install and execute Tempest
- include: common/test-install-tempest.yml - import_playbook: common/test-install-tempest.yml
# Test Keystone # Test Keystone
- include: test-keystone-functional.yml - import_playbook: test-keystone-functional.yml