Use include_tasks instead of include
include is marked as deprecated since ansible 2.4[0] [0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated Change-Id: I14b2330a665d58851c25587ce323cf1c36e7142b
This commit is contained in:
parent
fbbd530469
commit
bf14a3a9c4
@ -25,19 +25,19 @@
|
||||
tags:
|
||||
- always
|
||||
|
||||
- include: rally_pre_install.yml
|
||||
- include_tasks: rally_pre_install.yml
|
||||
tags:
|
||||
- rally-install
|
||||
|
||||
- include: rally_install.yml
|
||||
- include_tasks: rally_install.yml
|
||||
tags:
|
||||
- rally-install
|
||||
|
||||
- include: rally_post_install.yml
|
||||
- include_tasks: rally_post_install.yml
|
||||
tags:
|
||||
- rally-config
|
||||
|
||||
- include: rally_db_setup.yml
|
||||
- include_tasks: rally_db_setup.yml
|
||||
when: inventory_hostname == groups[rally_role_project_group][0]
|
||||
tags:
|
||||
- rally-config
|
||||
|
@ -15,16 +15,16 @@
|
||||
|
||||
# Prepare the user ssh keys
|
||||
# Setup the host
|
||||
- include: common/test-setup-host.yml
|
||||
- import_playbook: common/test-setup-host.yml
|
||||
|
||||
# Install RabbitMQ/MariaDB
|
||||
- include: common/test-install-infra.yml
|
||||
- import_playbook: common/test-install-infra.yml
|
||||
|
||||
# Install Keystone
|
||||
- include: common/test-install-keystone.yml
|
||||
- import_playbook: common/test-install-keystone.yml
|
||||
|
||||
# Install Rally
|
||||
- include: test-install-rally.yml
|
||||
- import_playbook: test-install-rally.yml
|
||||
|
||||
# Functional testing of Rally Install
|
||||
- include: test-functional-rally.yml
|
||||
- import_playbook: test-functional-rally.yml
|
||||
|
Loading…
Reference in New Issue
Block a user