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.
 
 

23 lines
556 B

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  5. when: "run_setup|bool and matrix_corporal_enabled|bool"
  6. tags:
  7. - setup-all
  8. - setup-corporal
  9. - import_tasks: "{{ role_path }}/tasks/setup_corporal.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-corporal
  14. - import_tasks: "{{ role_path }}/tasks/self_check_corporal.yml"
  15. delegate_to: 127.0.0.1
  16. become: false
  17. when: "run_self_check|bool and matrix_corporal_enabled|bool"
  18. tags:
  19. - self-check