Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

39 řádky
1.1 KiB

  1. # SPDX-FileCopyrightText: 2020 - 2024 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2021 MDAD project contributors
  3. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - tags:
  8. - setup-all
  9. - setup-matrix-registration
  10. - install-all
  11. - install-matrix-registration
  12. block:
  13. - when: matrix_registration_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  15. - when: matrix_registration_enabled | bool
  16. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  17. - tags:
  18. - setup-all
  19. - setup-matrix-registration
  20. block:
  21. - when: not matrix_registration_enabled | bool
  22. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  23. - tags:
  24. - generate-matrix-registration-token
  25. block:
  26. - when: matrix_registration_enabled | bool
  27. ansible.builtin.include_tasks: "{{ role_path }}/tasks/generate_token.yml"
  28. - tags:
  29. - list-matrix-registration-tokens
  30. block:
  31. - when: matrix_registration_enabled | bool
  32. ansible.builtin.include_tasks: "{{ role_path }}/tasks/list_tokens.yml"