lab-ansible/roles/apps/tasks/main.yml

39 lines
960 B
YAML
Raw Normal View History

2023-10-28 23:00:05 +00:00
# vim: ft=yaml.ansible
2023-10-29 19:46:52 +00:00
# code: language=ansible
2023-10-28 23:00:05 +00:00
---
2023-10-29 19:46:52 +00:00
- name: Create Docker network for apps
community.docker.docker_network:
name: "{{ apps_shared_docker_network }}"
2023-10-29 19:46:52 +00:00
enable_ipv6: true
ipam_config:
- subnet: 172.17.2.0/24
2023-12-25 20:49:17 +00:00
- subnet: fd02::/64
2023-10-28 23:00:05 +00:00
state: present
- name: Create Docker network for Postfix
community.docker.docker_network:
name: "{{ apps_postfix_docker_network }}"
state: present
when: "'postfix' in apps_include"
2023-12-27 23:07:21 +00:00
- name: Create base directory for apps
2023-10-28 23:00:05 +00:00
ansible.builtin.file:
path: "{{ apps_data_root }}"
2023-10-29 19:46:52 +00:00
owner: root
2023-11-11 14:47:51 +00:00
mode: u=rwx,g=rx,o=rx
2023-10-29 19:46:52 +00:00
state: directory
2023-10-28 23:00:05 +00:00
2023-10-29 19:46:52 +00:00
- name: Configure apps
2023-11-26 16:37:17 +00:00
ansible.builtin.include_tasks: configure_app.yml
vars:
app_name: "{{ item }}"
app_vars: "{{ apps_vars[item] }}"
loop: "{{ apps_include }}"
2023-11-11 15:21:29 +00:00
- name: Copy deploy.sh
ansible.builtin.template:
src: scripts/deploy.sh.j2
dest: /usr/local/bin/deploy.sh
owner: root
mode: u=rwx,g=rx,o=rx