mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
21 lines
610 B
YAML
21 lines
610 B
YAML
- name: Deployment Application
|
|
hosts: all
|
|
become: yes
|
|
become_method: sudo
|
|
|
|
vars_files:
|
|
- vars/main.yml
|
|
|
|
pre_tasks:
|
|
- include: roles/common/installapp.yml
|
|
|
|
roles:
|
|
- { role: role_common, tags: "role_common" }
|
|
- { role: role_cloud, tags: "role_cloud" }
|
|
- { role: role_docker, tags: "role_docker" }
|
|
- { role: role_nginx, tags: "role_nginx" }
|
|
- { role: role_mysql, tags: "role_mysql" }
|
|
- { role: "{{appname}}", tags: "{{appname}}" }
|
|
- { role: role_init, tags: "role_init" }
|
|
- { role: role_preend, tags: "preend" }
|
|
- { role: role_end, tags: "role_end" }
|