mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
5
tests/integration/targets/setup_docker/vars/Debian.yml
Normal file
5
tests/integration/targets/setup_docker/vars/Debian.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
docker_prereq_packages:
|
||||
- apt-transport-https
|
||||
- ca-certificates
|
||||
- curl
|
||||
- software-properties-common
|
4
tests/integration/targets/setup_docker/vars/Fedora.yml
Normal file
4
tests/integration/targets/setup_docker/vars/Fedora.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
docker_prereq_packages: []
|
||||
|
||||
docker_packages:
|
||||
- docker-ce
|
8
tests/integration/targets/setup_docker/vars/RedHat-7.yml
Normal file
8
tests/integration/targets/setup_docker/vars/RedHat-7.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
docker_prereq_packages:
|
||||
- yum-utils
|
||||
- device-mapper-persistent-data
|
||||
- lvm2
|
||||
- libseccomp
|
||||
|
||||
docker_pip_extra_packages:
|
||||
- requests==2.6.0
|
9
tests/integration/targets/setup_docker/vars/RedHat-8.yml
Normal file
9
tests/integration/targets/setup_docker/vars/RedHat-8.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
docker_prereq_packages:
|
||||
- yum-utils
|
||||
- device-mapper-persistent-data
|
||||
- lvm2
|
||||
- libseccomp
|
||||
|
||||
# Docker CE > 3:18.09.1 requires containerd.io >= 1.2.2-3 which is unavaible at this time
|
||||
docker_packages:
|
||||
- docker-ce-3:18.09.1
|
2
tests/integration/targets/setup_docker/vars/Suse.yml
Normal file
2
tests/integration/targets/setup_docker/vars/Suse.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
docker_packages:
|
||||
- docker>=17
|
|
@ -0,0 +1,5 @@
|
|||
docker_pip_extra_packages:
|
||||
# Installing requests >=2.12.0 on Ubuntu 14.04 breaks certificate validation. We restrict to an older version
|
||||
# to ensure out get_url tests work out fine. This is only an issue if pyOpenSSL is also installed.
|
||||
# Not sure why RHEL7 needs this specific version
|
||||
- requests==2.6.0
|
0
tests/integration/targets/setup_docker/vars/default.yml
Normal file
0
tests/integration/targets/setup_docker/vars/default.yml
Normal file
Loading…
Add table
Add a link
Reference in a new issue