molecule.yml 490 B

123456789101112131415161718192021222324252627
  1. ---
  2. driver:
  3. name: delegated
  4. options:
  5. managed: False
  6. ansible_connection_options:
  7. ansible_connection: local
  8. lint: |
  9. set -e
  10. yamllint .
  11. # TODO #1 need fix - not working OOTB ansible-lint
  12. platforms:
  13. - name: molecule-kind-prereqs-local
  14. provisioner:
  15. name: ansible
  16. scenario:
  17. test_sequence:
  18. - lint
  19. - syntax
  20. - converge
  21. - idempotence
  22. - verify
  23. verifier:
  24. name: ansible
  25. playbooks:
  26. converge: ${MOLECULE_PLAYBOOK:-converge.yml}