a96efa43f0
* Check minimal API and docker-py versions for all docker_* tests.
* Improve docker_swarm creation/destruction for tests.
* Fail when conditions aren't met.
* Don't hardcode address for advertise_addr.
(cherry picked from commit 3bb41ccb8e
)
7 lines
634 B
YAML
7 lines
634 B
YAML
- include_tasks: test_secrets.yml
|
|
# Maximum of 2.1.0 (docker-py version for docker_secrets) and 2.6.0 (docker-py version for docker_swarm) is 2.6.0
|
|
# Maximum of 1.25 (docker API version for docker_secrets) and 1.35 (docker API version for docker_swarm) is 1.35
|
|
when: docker_py_version is version('2.6.0', '>=') and docker_api_version is version('1.35', '>=')
|
|
|
|
- fail: msg="Too old docker / docker-py version to run docker_secrets tests!"
|
|
when: not(docker_py_version is version('2.6.0', '>=') and docker_api_version is version('1.35', '>=')) and (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int > 6)
|