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.
 
 

31 satır
739 B

  1. ---
  2. - import_tasks: "{{ role_path }}/tasks/init.yml"
  3. tags:
  4. - always
  5. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  6. when: "run_setup|bool and matrix_ma1sd_enabled|bool"
  7. tags:
  8. - setup-all
  9. - setup-ma1sd
  10. - import_tasks: "{{ role_path }}/tasks/setup_install.yml"
  11. when: "run_setup|bool and matrix_ma1sd_enabled|bool"
  12. tags:
  13. - setup-all
  14. - setup-ma1sd
  15. - import_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  16. when: "run_setup|bool and not matrix_ma1sd_enabled|bool"
  17. tags:
  18. - setup-all
  19. - setup-ma1sd
  20. - import_tasks: "{{ role_path }}/tasks/self_check_ma1sd.yml"
  21. delegate_to: 127.0.0.1
  22. become: false
  23. when: "run_self_check|bool and matrix_ma1sd_enabled|bool"
  24. tags:
  25. - self-check