2022-06-27 01:18:46 +00:00
|
|
|
- name: Deploy Application
|
2022-05-10 09:35:30 +00:00
|
|
|
hosts: all
|
|
|
|
become: yes
|
|
|
|
become_method: sudo
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
- vars/main.yml
|
2022-07-05 08:55:17 +00:00
|
|
|
|
2022-07-11 03:19:15 +00:00
|
|
|
pre_tasks:
|
2022-07-11 04:04:10 +00:00
|
|
|
- name: Get applist
|
2022-07-11 03:19:15 +00:00
|
|
|
block:
|
2022-07-11 04:04:10 +00:00
|
|
|
- name: Get appname and dependencies, combine to a applist
|
|
|
|
shell : |
|
|
|
|
echo "{{appname}}" > /tmp/applist
|
|
|
|
wget -N https://raw.githubusercontent.com/Websoft9/StackHub/main/apps/roles/{{appname}}/meta/main.yml
|
|
|
|
cat main.yml | sed -n '/dependencies/,/galaxy_info/{//!p}'|grep -|awk -F'- ' '{print $2}' >>/tmp/applist
|
|
|
|
cat /tmp/applist
|
|
|
|
register: applist
|
2022-09-07 02:13:19 +00:00
|
|
|
|
2022-08-23 09:01:51 +00:00
|
|
|
- name: Check if nginx is necessary
|
|
|
|
shell : |
|
|
|
|
wget -N https://raw.githubusercontent.com/Websoft9/docker-{{appname}}/main/.env
|
2022-08-23 09:14:08 +00:00
|
|
|
cat .env
|
|
|
|
register: env_content
|
2022-09-07 02:13:19 +00:00
|
|
|
failed_when: False
|
2022-09-07 02:36:25 +00:00
|
|
|
|
2022-09-07 02:13:19 +00:00
|
|
|
- name: App without docker register
|
|
|
|
shell : |
|
2022-09-07 02:14:26 +00:00
|
|
|
wget -N https://raw.githubusercontent.com/Websoft9/StackHub/main/apps/roles/{{appname}}/templates/.env
|
2022-09-07 02:13:19 +00:00
|
|
|
cat .env
|
|
|
|
register: env_content
|
2022-09-07 02:31:49 +00:00
|
|
|
when: env_content.stdout == ""
|
2022-09-07 02:36:25 +00:00
|
|
|
|
2022-05-10 09:35:30 +00:00
|
|
|
roles:
|
2022-07-08 08:58:22 +00:00
|
|
|
- { role: role_common, tags: "role_common" }
|
|
|
|
- { role: role_cloud, tags: "role_cloud" }
|
2022-07-05 02:42:12 +00:00
|
|
|
- { role: "{{appname}}", tags: "{{appname}}" }
|
2022-08-23 09:14:08 +00:00
|
|
|
- { role: role_nginx, tags: "role_nginx", when: env_content.stdout.find('APP_HTTP_PORT') != -1 }
|
2022-05-11 01:51:13 +00:00
|
|
|
- { role: role_init, tags: "role_init" }
|
|
|
|
- { role: role_preend, tags: "preend" }
|
|
|
|
- { role: role_end, tags: "role_end" }
|