ansible-nas/roles/hello_world/molecule/default/verify.yml

18 lines
422 B
YAML
Raw Normal View History

2022-09-09 21:24:34 +00:00
---
# 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