Okay, let's see if these pauses are enough to get this passing
This commit is contained in:
parent
4009c053f7
commit
cfda56908a
2 changed files with 38 additions and 12 deletions
|
@ -8,6 +8,7 @@
|
||||||
image: busybox
|
image: busybox
|
||||||
state: present
|
state: present
|
||||||
pull: missing
|
pull: missing
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Run a small script in busybox
|
- name: Run a small script in busybox
|
||||||
docker:
|
docker:
|
||||||
|
@ -16,6 +17,7 @@
|
||||||
pull: always
|
pull: always
|
||||||
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
||||||
detach: True
|
detach: True
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Get the docker container id
|
- name: Get the docker container id
|
||||||
shell: "docker ps | grep busybox | awk '{ print $1 }'"
|
shell: "docker ps | grep busybox | awk '{ print $1 }'"
|
||||||
|
@ -25,6 +27,10 @@
|
||||||
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
||||||
register: container_ip
|
register: container_ip
|
||||||
|
|
||||||
|
- name: Pause a few moments because docker is not reliable
|
||||||
|
pause:
|
||||||
|
seconds: 40
|
||||||
|
|
||||||
- name: Try to access the server
|
- name: Try to access the server
|
||||||
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
@ -43,6 +49,7 @@
|
||||||
TEST: hello
|
TEST: hello
|
||||||
command: '/bin/sh -c "nc -l -p 2000 -e xargs -n1 echo $TEST"'
|
command: '/bin/sh -c "nc -l -p 2000 -e xargs -n1 echo $TEST"'
|
||||||
detach: True
|
detach: True
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Get the docker container id
|
- name: Get the docker container id
|
||||||
shell: "docker ps | grep busybox | awk '{ print $1 }'"
|
shell: "docker ps | grep busybox | awk '{ print $1 }'"
|
||||||
|
@ -52,6 +59,10 @@
|
||||||
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
||||||
register: container_ip
|
register: container_ip
|
||||||
|
|
||||||
|
- name: Pause a few moments because docker is not reliable
|
||||||
|
pause:
|
||||||
|
seconds: 40
|
||||||
|
|
||||||
- name: Try to access the server
|
- name: Try to access the server
|
||||||
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
@ -62,5 +73,4 @@
|
||||||
- "'hello world' in docker_output.stdout_lines"
|
- "'hello world' in docker_output.stdout_lines"
|
||||||
|
|
||||||
- name: Remove the busybox image from the local docker
|
- name: Remove the busybox image from the local docker
|
||||||
shell: "docker rmi -f busybox"
|
shell: "docker rmi -f $(docker images -q)"
|
||||||
|
|
||||||
|
|
|
@ -19,17 +19,16 @@
|
||||||
- name: Push docker image into the private registry
|
- name: Push docker image into the private registry
|
||||||
command: "docker push localhost:5000/mine"
|
command: "docker push localhost:5000/mine"
|
||||||
|
|
||||||
- name: Remove the busybox image from the local docker
|
- name: Remove containers
|
||||||
command: "docker rmi -f {{ image_id.stdout_lines[0] }}"
|
shell: "docker rm $(docker ps -aq)"
|
||||||
|
|
||||||
- name: Remove the new image from the local docker
|
- name: Remove all images from the local docker
|
||||||
command: "docker rmi -f localhost:5000/mine"
|
shell: "docker rmi -f $(docker images -q)"
|
||||||
|
|
||||||
- name: Get number of images in docker
|
- name: Get number of images in docker
|
||||||
command: "docker images"
|
command: "docker images"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
|
||||||
- debug: var=docker_output
|
|
||||||
# docker prints a header so the header should be all that's present
|
# docker prints a header so the header should be all that's present
|
||||||
- name: Check that there are no images in docker
|
- name: Check that there are no images in docker
|
||||||
assert:
|
assert:
|
||||||
|
@ -42,6 +41,7 @@
|
||||||
state: present
|
state: present
|
||||||
pull: missing
|
pull: missing
|
||||||
insecure_registry: True
|
insecure_registry: True
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Run a small script in the new image
|
- name: Run a small script in the new image
|
||||||
docker:
|
docker:
|
||||||
|
@ -51,6 +51,7 @@
|
||||||
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
||||||
detach: True
|
detach: True
|
||||||
insecure_registry: True
|
insecure_registry: True
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Get the docker container id
|
- name: Get the docker container id
|
||||||
shell: "docker ps | grep mine | awk '{ print $1 }'"
|
shell: "docker ps | grep mine | awk '{ print $1 }'"
|
||||||
|
@ -60,6 +61,10 @@
|
||||||
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
||||||
register: container_ip
|
register: container_ip
|
||||||
|
|
||||||
|
- name: Pause a few moments because docker is not reliable
|
||||||
|
pause:
|
||||||
|
seconds: 40
|
||||||
|
|
||||||
- name: Try to access the server
|
- name: Try to access the server
|
||||||
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
@ -69,14 +74,17 @@
|
||||||
that:
|
that:
|
||||||
- "'hello world' in docker_output.stdout_lines"
|
- "'hello world' in docker_output.stdout_lines"
|
||||||
|
|
||||||
- name: Remove the new image from the local docker
|
|
||||||
command: "docker rmi -f localhost:5000/mine"
|
- name: Remove containers
|
||||||
|
shell: "docker rm $(docker ps -aq)"
|
||||||
|
|
||||||
|
- name: Remove all images from the local docker
|
||||||
|
shell: "docker rmi -f $(docker images -q)"
|
||||||
|
|
||||||
- name: Get number of images in docker
|
- name: Get number of images in docker
|
||||||
command: "docker images"
|
command: "docker images"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
|
||||||
- debug: var=docker_output
|
|
||||||
- name: Check that there are no images in docker
|
- name: Check that there are no images in docker
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
|
@ -135,6 +143,7 @@
|
||||||
state: running
|
state: running
|
||||||
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
command: "nc -l -p 2000 -e xargs -n1 echo hello"
|
||||||
detach: True
|
detach: True
|
||||||
|
docker_api_version: "1.14"
|
||||||
|
|
||||||
- name: Get the docker container id
|
- name: Get the docker container id
|
||||||
shell: "docker ps | grep mine | awk '{ print $1 }'"
|
shell: "docker ps | grep mine | awk '{ print $1 }'"
|
||||||
|
@ -144,6 +153,10 @@
|
||||||
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
shell: "docker inspect {{ container_id.stdout_lines[0] }} | grep IPAddress | awk -F '\"' '{ print $4 }'"
|
||||||
register: container_ip
|
register: container_ip
|
||||||
|
|
||||||
|
- name: Pause a few moments because docker is not reliable
|
||||||
|
pause:
|
||||||
|
seconds: 40
|
||||||
|
|
||||||
- name: Try to access the server
|
- name: Try to access the server
|
||||||
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
shell: "echo 'world' | nc {{ container_ip.stdout_lines[0] }} 2000"
|
||||||
register: docker_output
|
register: docker_output
|
||||||
|
@ -153,8 +166,11 @@
|
||||||
that:
|
that:
|
||||||
- "'hello world' in docker_output.stdout_lines"
|
- "'hello world' in docker_output.stdout_lines"
|
||||||
|
|
||||||
- name: Remove the private repo image from the local docker
|
- name: Remove containers
|
||||||
command: "docker rmi -f dockertest.ansible.com:8080/mine"
|
shell: "docker rm $(docker ps -aq)"
|
||||||
|
|
||||||
|
- name: Remove all images from the local docker
|
||||||
|
shell: "docker rmi -f $(docker images -q)"
|
||||||
|
|
||||||
- name: Remove domain name to hosts
|
- name: Remove domain name to hosts
|
||||||
lineinfile:
|
lineinfile:
|
||||||
|
|
Loading…
Reference in a new issue