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.
 
 

25 lines
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