2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
- include_tasks: test_stack.yml
|
|
|
|
when: docker_api_version is version('1.25', '>=')
|
|
|
|
|
|
|
|
- fail: msg="Too old docker / docker-py version to run docker_stack tests!"
|
|
|
|
when: not(docker_api_version is version('1.25', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)
|