Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

37 righe
641 B

  1. ---
  2. - include: tasks/setup/main.yml
  3. when: run_setup
  4. - include: tasks/upgrade_postgres.yml
  5. tags:
  6. - upgrade-postgres
  7. when: run_upgrade_postgres
  8. - include: tasks/start.yml
  9. tags:
  10. - start
  11. when: run_start
  12. - include: tasks/register_user.yml
  13. tags:
  14. - register-user
  15. when: run_register_user
  16. - include: tasks/import_sqlite_db.yml
  17. tags:
  18. - import-sqlite-db
  19. when: run_import_sqlite_db
  20. - include: tasks/import_media_store.yml
  21. tags:
  22. - import-media-store
  23. when: run_import_media_store
  24. - include: tasks/self_check/main.yml
  25. delegate_to: 127.0.0.1
  26. become: false
  27. tags:
  28. - self-check
  29. when: run_self_check