Fix deprecation warning from multinode tests

include for playbook includes is being removed in ansible 2.12
and currently throws a deprecation warning in ansible2.9 so let's
update this to use import_playbook instead.

Change-Id: If4e766e4bd2e03383c916abdfc340773d02c93a7
This commit is contained in:
Albin Vass 2020-05-23 23:26:41 +02:00
parent 8df1e02752
commit 01098e2c77

View File

@ -3,8 +3,8 @@
# If you add new tests, also update the files section in jobs
# base-integration and multinode-integration in zuul.d/jobs.yaml.
- include: multi-node-known-hosts.yaml
- include: multi-node-hosts-file.yaml
- include: multi-node-firewall.yaml
- include: multi-node-bridge.yaml
- include: persistent-firewall.yaml
- import_playbook: multi-node-known-hosts.yaml
- import_playbook: multi-node-hosts-file.yaml
- import_playbook: multi-node-firewall.yaml
- import_playbook: multi-node-bridge.yaml
- import_playbook: persistent-firewall.yaml