Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

40 righe
969 B

  1. ---
  2. - import_tasks: "{{ role_path }}/tasks/init.yml"
  3. tags:
  4. - always
  5. # Always validating the configuration, even if `matrix_nginx_proxy: false`.
  6. # This role performs actions even if the role is disabled, so we need
  7. # to ensure there's a valid configuration in any case.
  8. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  9. when: run_setup|bool
  10. tags:
  11. - setup-all
  12. - setup-nginx-proxy
  13. - import_tasks: "{{ role_path }}/tasks/ssl/main.yml"
  14. when: run_setup|bool
  15. tags:
  16. - setup-all
  17. - setup-nginx-proxy
  18. - setup-ssl
  19. - import_tasks: "{{ role_path }}/tasks/setup_nginx_proxy.yml"
  20. when: run_setup|bool
  21. tags:
  22. - setup-all
  23. - setup-nginx-proxy
  24. - import_tasks: "{{ role_path }}/tasks/self_check_well_known.yml"
  25. delegate_to: 127.0.0.1
  26. become: false
  27. when: run_self_check|bool
  28. tags:
  29. - self-check
  30. - name: Mark matrix-nginx-proxy role as executed
  31. set_fact:
  32. matrix_nginx_proxy_role_executed: true
  33. tags:
  34. - always