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
710 B

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