molecule.yml 514 B

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