| 1234567891011121314151617181920212223242526272829 |
- ---
- dependency:
- name: galaxy
- 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-minikube-create
- provisioner:
- name: ansible
- scenario:
- test_sequence:
- - lint
- - syntax
- - converge
- - idempotence
- - verify
- verifier:
- name: ansible
- playbooks:
- converge: ${MOLECULE_PLAYBOOK:-converge.yml}
-
|