Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

35 Zeilen
930 B

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