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:
|
tags:
|
||||||
- always
|
- always
|
||||||
|
|
||||||
- include: rally_pre_install.yml
|
- include_tasks: rally_pre_install.yml
|
||||||
tags:
|
tags:
|
||||||
- rally-install
|
- rally-install
|
||||||
|
|
||||||
- include: rally_install.yml
|
- include_tasks: rally_install.yml
|
||||||
tags:
|
tags:
|
||||||
- rally-install
|
- rally-install
|
||||||
|
|
||||||
- include: rally_post_install.yml
|
- include_tasks: rally_post_install.yml
|
||||||
tags:
|
tags:
|
||||||
- rally-config
|
- rally-config
|
||||||
|
|
||||||
- include: rally_db_setup.yml
|
- include_tasks: rally_db_setup.yml
|
||||||
when: inventory_hostname == groups[rally_role_project_group][0]
|
when: inventory_hostname == groups[rally_role_project_group][0]
|
||||||
tags:
|
tags:
|
||||||
- rally-config
|
- rally-config
|
||||||
|
@ -15,16 +15,16 @@
|
|||||||
|
|
||||||
# Prepare the user ssh keys
|
# Prepare the user ssh keys
|
||||||
# Setup the host
|
# Setup the host
|
||||||
- include: common/test-setup-host.yml
|
- import_playbook: common/test-setup-host.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 Rally
|
# Install Rally
|
||||||
- include: test-install-rally.yml
|
- import_playbook: test-install-rally.yml
|
||||||
|
|
||||||
# Functional testing of Rally Install
|
# Functional testing of Rally Install
|
||||||
- include: test-functional-rally.yml
|
- import_playbook: test-functional-rally.yml
|
||||||
|
Loading…
Reference in New Issue
Block a user