| 123456789101112131415161718192021222324252627 |
- ---
- driver:
- name: delegated
- options:
- managed: False
- ansible_connection_options:
- ansible_connection: local
- lint: |
- set -e
- yamllint .
- # TODO #1 need fix - not working OOTB ansible-lint
- platforms:
- - name: molecule-kind-prereqs-local
- provisioner:
- name: ansible
- scenario:
- test_sequence:
- - lint
- - syntax
- - converge
- - idempotence
- - verify
- verifier:
- name: ansible
- playbooks:
- converge: ${MOLECULE_PLAYBOOK:-converge.yml}
-
|