mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Would help if I added these files in the right directory
This commit is contained in:
parent
23291e8d8c
commit
f8ec1451ea
2 changed files with 47 additions and 0 deletions
|
@ -0,0 +1,6 @@
|
||||||
|
- name: Install docker packages (apt)
|
||||||
|
apt:
|
||||||
|
state: present
|
||||||
|
# Note: add docker-registry when available
|
||||||
|
name: docker.io,python-docker,netcat-openbsd
|
||||||
|
|
41
test/integration/roles/test_docker/tasks/docker-tests.yml
Normal file
41
test/integration/roles/test_docker/tasks/docker-tests.yml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
- name: Start docker daemon
|
||||||
|
service:
|
||||||
|
name: docker
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: Download busybox image
|
||||||
|
docker:
|
||||||
|
image: busybox
|
||||||
|
state: present
|
||||||
|
pull: missing
|
||||||
|
|
||||||
|
- name: Run a small script in busybox
|
||||||
|
docker:
|
||||||
|
image: busybox
|
||||||
|
state: reloaded
|
||||||
|
pull: always
|
||||||
|
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
||||||
|
detach: True
|
||||||
|
|
||||||
|
- name: Get the docker container id
|
||||||
|
shell: "docker ps | grep busybox | awk '{ print $1 }'"
|
||||||
|
register: container_id
|
||||||
|
|
||||||
|
- debug: var=container_id
|
||||||
|
|
||||||
|
- name: Get the docker container ip
|
||||||
|
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
||||||
|
register: container_ip
|
||||||
|
|
||||||
|
- debug: var=container_ip
|
||||||
|
|
||||||
|
- name: Try to access the server
|
||||||
|
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
||||||
|
register: docker_output
|
||||||
|
|
||||||
|
- debug: var=docker_output
|
||||||
|
|
||||||
|
- name: check that the script ran
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "'hello world' in docker_output.stdout_lines"
|
Loading…
Reference in a new issue