- Add comprehensive converge playbook with test scenarios - Create Molecule configuration for role testing - Set up verification tasks
11 lines
193 B
YAML
11 lines
193 B
YAML
---
|
|
# This is an example playbook to execute Ansible tests.
|
|
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Example assertion
|
|
ansible.builtin.assert:
|
|
that: true
|