Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

22 líneas
665 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. - block:
  9. - when: matrix_etherpad_enabled | bool
  10. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  11. - when: matrix_etherpad_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  13. - when: not matrix_etherpad_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  15. tags:
  16. - setup-all
  17. - setup-etherpad