molecule.yml 513 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. dependency:
  3. name: galaxy
  4. driver:
  5. name: podman
  6. platforms:
  7. - name: instance
  8. image: registry.access.redhat.com/ubi8/python-39:latest
  9. tmpfs:
  10. - /run
  11. - /tmp
  12. volumes:
  13. - /sys/fs/cgroup:/sys/fs/cgroup:ro
  14. capabilities:
  15. - SYS_ADMIN
  16. pre_build_image: true
  17. provisioner:
  18. name: ansible
  19. config_options:
  20. defaults:
  21. interpreter_python: auto_silent
  22. ssh_connection:
  23. pipelining: false
  24. verifier:
  25. name: ansible
  26. lint: |
  27. set -e
  28. yamllint .
  29. ansible-lint .