
Use localhost and container1 as proper targets for the test playbook rather than a combination of import_tasks/delegate_to for container1. The previous code did not run the imported tasks against container1, but instead a second time against localhost. This makes the handlers checking the output from ansible diff fail as on the second run against localhost there are no changes, giving an empty diff. Changing the test play targets to localhost:container1 makes it more obvious that the whole test playbook should be run against the host and the container. It is not clear from the old code if the original intent was to specifically test config_template tasks delegated from the host to a container. Change-Id: Ibc72868d9957567fe86a9d3205a80ec33441baff
Team and repository tags
OpenStack-Ansible plugins
These are the plugins the OpenStack-Ansible deployment project relies
on. The plugins can be added to any Ansible project by simply cloning
this repository and setting up the ansible.cfg
file to
point at them as additional plugins for your project.
- Documentation for the project can be found at:
- Release notes for the project can be found at:
-
https://docs.openstack.org/releasenotes/ansible-config_template/
- The project source code repository is located at:
- The project home is at:
- The project bug tracker is located at:
Description
Languages
Python
100%