Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
1.2 KiB

  1. ---
  2. # This file is not used by the playbook's standard CLI installation flow.
  3. # Roles are pulled via `make roles` / `just roles`, which call
  4. # `ansible-galaxy install -r requirements.yml -p roles/galaxy/`.
  5. # Collections are not installed by that command, and the playbook relies
  6. # on whatever `community.*` collections ship with the user's `ansible`
  7. # package (which has been recent enough for years).
  8. #
  9. # This file exists for AWX / Ansible Automation Platform users, which
  10. # auto-detect `collections/requirements.yml` during project sync and
  11. # install the listed collections. See:
  12. # https://github.com/spantaleev/matrix-docker-ansible-deploy/commit/87a2240dc
  13. #
  14. # CLI users do not need to install anything from this file. If you are
  15. # using AWX and a collection version below the floor declared here is
  16. # present, AWX will upgrade it.
  17. collections:
  18. - name: community.general
  19. - name: community.docker
  20. # `community.docker.docker_image_pull` and `community.docker.docker_image_build`
  21. # are used by some roles (e.g. matrix-bot-draupnir,
  22. # matrix-appservice-draupnir-for-all) and are first available in
  23. # community.docker 3.6.0 (Jan 2024 / Ansible 9.2.0).
  24. version: ">=3.6.0"