2022-08-04 17:37:08 +00:00
|
|
|
---
|
|
|
|
|
2022-08-09 03:08:09 +00:00
|
|
|
- name: Ensure Conduit config path exists
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ matrix_conduit_config_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
|
|
|
|
- name: Ensure Conduit data path exists
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ matrix_conduit_data_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0770
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
|
2022-08-04 17:37:08 +00:00
|
|
|
- name: Ensure Conduit configuration installed
|
2022-08-05 18:44:56 +00:00
|
|
|
ansible.builtin.template:
|
2024-02-19 14:14:36 +00:00
|
|
|
src: "{{ matrix_conduit_template_conduit_config }}"
|
2022-08-04 18:25:18 +00:00
|
|
|
dest: "{{ matrix_conduit_config_path }}/conduit.toml"
|
2022-08-04 17:37:08 +00:00
|
|
|
mode: 0644
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
|
2024-01-11 06:56:51 +00:00
|
|
|
- name: Ensure Conduit support files installed
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/{{ item }}.j2"
|
|
|
|
dest: "{{ matrix_conduit_base_path }}/{{ item }}"
|
|
|
|
mode: 0640
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
with_items:
|
|
|
|
- labels
|
|
|
|
|
2023-02-26 20:08:08 +00:00
|
|
|
- name: Ensure Conduit container network is created
|
|
|
|
community.general.docker_network:
|
2024-03-24 17:15:43 +00:00
|
|
|
enable_ipv6: "{{ devture_systemd_docker_base_ipv6_enabled }}"
|
2023-02-26 20:08:08 +00:00
|
|
|
name: "{{ matrix_conduit_container_network }}"
|
|
|
|
driver: bridge
|
|
|
|
|
|
|
|
- name: Ensure Conduit container image is pulled
|
|
|
|
community.docker.docker_image:
|
|
|
|
name: "{{ matrix_conduit_docker_image }}"
|
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
|
|
force_source: "{{ matrix_conduit_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
|
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_conduit_docker_image_force_pull }}"
|
|
|
|
register: result
|
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
|
|
|
until: result is not failed
|
|
|
|
|
2022-08-04 17:37:08 +00:00
|
|
|
- name: Ensure matrix-conduit.service installed
|
2022-08-05 18:44:56 +00:00
|
|
|
ansible.builtin.template:
|
2024-01-11 06:56:51 +00:00
|
|
|
src: "{{ role_path }}/templates/systemd/matrix-conduit.service.j2"
|
2022-11-04 14:38:38 +00:00
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-conduit.service"
|
2022-08-04 17:37:08 +00:00
|
|
|
mode: 0644
|