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.
 
 

27 Zeilen
684 B

  1. ---
  2. - block:
  3. - when: matrix_corporal_enabled | bool
  4. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  5. - when: matrix_corporal_enabled | bool
  6. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  7. tags:
  8. - setup-all
  9. - setup-corporal
  10. - install-all
  11. - install-corporal
  12. - block:
  13. - when: not matrix_corporal_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  15. tags:
  16. - setup-all
  17. - setup-corporal
  18. - block:
  19. - when: matrix_corporal_enabled | bool
  20. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check.yml"
  21. tags:
  22. - self-check