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.
 
 

34 lines
1018 B

  1. ---
  2. - block:
  3. - when: matrix_registration_enabled | bool
  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_registration_enabled | bool
  10. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  11. - when: matrix_registration_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  13. - when: not matrix_registration_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  15. tags:
  16. - setup-all
  17. - setup-matrix-registration
  18. - block:
  19. - when: matrix_registration_enabled | bool
  20. ansible.builtin.include_tasks: "{{ role_path }}/tasks/generate_token.yml"
  21. tags:
  22. - generate-matrix-registration-token
  23. - block:
  24. - when: matrix_registration_enabled | bool
  25. ansible.builtin.include_tasks: "{{ role_path }}/tasks/list_tokens.yml"
  26. tags:
  27. - list-matrix-registration-tokens