Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

39 satır
964 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|bool
  9. tags:
  10. - setup-all
  11. - setup-nginx-proxy
  12. - import_tasks: "{{ role_path }}/tasks/ssl/main.yml"
  13. when: run_setup|bool
  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|bool
  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|bool
  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