summaryrefslogtreecommitdiff
path: root/test/integration/targets/docker_config
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Temporarily skip failing Docker tests on RHEL 7.6."Matt Clay2019-03-271-1/+0
| | | | This reverts commit affde96fa8390cef23cfe1834992ec97e8dbea7b.
* Temporarily skip failing Docker tests on RHEL 7.6.Matt Clay2019-03-261-0/+1
|
* Rebalance docker_* integration tests.Matt Clay2019-03-071-1/+1
|
* docker_*: enable RHEL8 tests (#53313)Felix Fontein2019-03-051-1/+0
|
* Only run docker swarm based tests on VMs. (#53292)Felix Fontein2019-03-041-0/+3
|
* docker_swarm: hopefully fix debug CI problems, and fix check mode (#52825)Felix Fontein2019-02-231-0/+4
| | | | | | | | | | | | | | * Let's see some debug output. * Also check LocalNodeState. * Improve tests. * Actually implement check mode. * Add changelog. * Add pretty-printing and more output.
* docker_secret, docker_config: allow to base64-decode data (#49688)Felix Fontein2019-01-011-0/+13
| | | | | | | | * Adjust docker_config and docker_secret to be more similar. * Add data_is_b64 parameter to docker_secret and docker_config. * Add changelog.
* docker_swarm: fix minimal API version (#49691)Felix Fontein2018-12-101-3/+2
| | | | | | | | * Reduce minimally required docker API version to 1.25, with selective features requiring 1.30. * Adjust test requirements. * Forgot some imports.
* docker_* tests: check API version (#48620)Felix Fontein2018-11-192-114/+120
| | | | | | | | | | * 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.
* Add CI platform: rhel/8.0 (#48835)Matt Clay2018-11-161-0/+1
|
* docker_container: simplify minimal required version per option handling (#47711)Felix Fontein2018-11-052-6/+3
| | | | | | | | | | | | | | | | | | | | | | * Store parsed docker-py / docker API versions in client. * Began refactoring 'minimal required version' for docker_container options. * Removing some fake defaults. * Added changelog. * Improve tests (check older docker versions). * Fix comparison. The breaking point is not docker-py 2.0.0, but 1.10.0. (Verified by testing with these versions.) * Move docker-py/API version detection to setup_docker. * Add YAML document starter. * docker_network requirement for docker-py was bumped to 1.10.0 in #47492.
* Add docker_config module (#38792)John Hu2018-10-264-0/+127
* Add docker_config module * Address review comments * Merge description lines * Stop returning empty config_id in results * Add integration tests for docker_config Based on docker_secret's tests. * Ensure swarm using docker_swarm module * Add minimum docker / docker api version requirements ref: https://github.com/ansible/ansible/pull/47046 * Check Docker API version before running tests ref: https://github.com/ansible/ansible/pull/47340 * Typo * Wording * Improve example * Assert state == absent is idempotent