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.
 
 

30 lines
863 B

  1. ---
  2. - tags:
  3. - setup-all
  4. - setup-nginx-proxy
  5. - install-all
  6. - install-nginx-proxy
  7. block:
  8. - when: matrix_synapse_admin_enabled | bool and matrix_synapse_admin_nginx_proxy_integration_enabled | bool
  9. ansible.builtin.include_tasks: "{{ role_path }}/tasks/inject_into_nginx_proxy.yml"
  10. - tags:
  11. - setup-all
  12. - setup-synapse-admin
  13. - install-all
  14. - install-synapse-admin
  15. block:
  16. - when: matrix_synapse_admin_enabled | bool
  17. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  18. - when: matrix_synapse_admin_enabled | bool
  19. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  20. - tags:
  21. - setup-all
  22. - setup-synapse-admin
  23. block:
  24. - when: not matrix_synapse_admin_enabled | bool
  25. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"