Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

30 linhas
804 B

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