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.
 
 

39 lines
944 B

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