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