mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 19:48:47 +00:00
18 lines
422 B
YAML
18 lines
422 B
YAML
|
---
|
||
|
# This is an example playbook to execute Ansible tests.
|
||
|
|
||
|
- name: Verify
|
||
|
hosts: all
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Get container state
|
||
|
docker_container_info:
|
||
|
name: hello_world
|
||
|
register: result
|
||
|
|
||
|
- name: Check Hello World is running
|
||
|
assert:
|
||
|
that:
|
||
|
- result.container['State']['Status'] == "running"
|
||
|
- result.container['State']['Restarting'] == false
|