Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

25 строки
556 B

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/setup_postgres.yml"
  5. when: run_setup
  6. tags:
  7. - setup-postgres
  8. - setup-all
  9. - import_tasks: "{{ role_path }}/tasks/import_postgres.yml"
  10. when: run_import_postgres
  11. tags:
  12. - import-postgres
  13. - import_tasks: "{{ role_path }}/tasks/import_sqlite_db.yml"
  14. when: run_import_sqlite_db
  15. tags:
  16. - import-sqlite-db
  17. - import_tasks: "{{ role_path }}/tasks/upgrade_postgres.yml"
  18. when: run_upgrade_postgres
  19. tags:
  20. - upgrade-postgres