2018-08-17 08:02:12 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# This will throw a Permission Denied error if already mounted using fuse
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Check Synapse media store path
|
2022-07-18 10:22:05 +02:00
|
|
|
ansible.builtin.stat:
|
2019-01-07 23:35:35 +01:00
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
2018-08-17 08:02:12 +02:00
|
|
|
register: local_path_media_store_stat
|
2022-02-05 21:32:54 +01:00
|
|
|
ignore_errors: true
|
2018-08-17 08:02:12 +02:00
|
|
|
|
|
|
|
# This is separate and conditional, to ensure we don't execute it
|
|
|
|
# if the path already exists or we failed to check, because it's mounted using fuse.
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Ensure Synapse media store path exists
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.file:
|
2018-08-17 08:02:12 +02:00
|
|
|
path: "{{ matrix_synapse_media_store_path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
2023-02-17 16:16:50 +01:00
|
|
|
owner: "{{ matrix_synapse_uid }}"
|
|
|
|
group: "{{ matrix_synapse_gid }}"
|
2018-08-17 08:02:12 +02:00
|
|
|
when: "not local_path_media_store_stat.failed and not local_path_media_store_stat.stat.exists"
|
|
|
|
|
2022-09-27 10:38:33 +02:00
|
|
|
- when: "matrix_synapse_container_image_self_build | bool"
|
|
|
|
block:
|
2022-02-05 21:32:54 +01:00
|
|
|
- name: Ensure Synapse repository is present on self-build
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.git:
|
2022-02-05 21:32:54 +01:00
|
|
|
repo: "{{ matrix_synapse_container_image_self_build_repo }}"
|
|
|
|
dest: "{{ matrix_synapse_docker_src_files_path }}"
|
|
|
|
version: "{{ matrix_synapse_docker_image.split(':')[1] }}"
|
|
|
|
force: "yes"
|
2022-04-14 07:52:37 +02:00
|
|
|
become: true
|
2023-02-17 16:16:50 +01:00
|
|
|
become_user: "{{ matrix_synapse_username }}"
|
2022-02-05 21:32:54 +01:00
|
|
|
register: matrix_synapse_git_pull_results
|
2020-02-17 21:48:48 +01:00
|
|
|
|
2022-02-05 21:32:54 +01:00
|
|
|
- name: Check if Synapse Docker image exists
|
2022-11-04 15:39:35 +01:00
|
|
|
ansible.builtin.command: "{{ devture_systemd_docker_base_host_command_docker }} images --quiet --filter 'reference={{ matrix_synapse_docker_image }}'"
|
2022-02-05 21:32:54 +01:00
|
|
|
register: matrix_synapse_docker_image_check_result
|
2022-07-18 11:28:39 +02:00
|
|
|
changed_when: false
|
2022-01-26 07:38:27 +01:00
|
|
|
|
2022-02-05 21:32:54 +01:00
|
|
|
# Invoking the `docker build` command here, instead of calling the `docker_image` Ansible module,
|
|
|
|
# because the latter does not support BuildKit.
|
|
|
|
# See: https://github.com/ansible-collections/community.general/issues/514
|
|
|
|
- name: Ensure Synapse Docker image is built
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.shell:
|
2022-02-05 21:32:54 +01:00
|
|
|
chdir: "{{ matrix_synapse_docker_src_files_path }}"
|
|
|
|
cmd: |
|
2022-11-04 15:39:35 +01:00
|
|
|
{{ devture_systemd_docker_base_host_command_docker }} build \
|
2022-02-05 21:32:54 +01:00
|
|
|
-t "{{ matrix_synapse_docker_image }}" \
|
|
|
|
-f docker/Dockerfile \
|
|
|
|
.
|
|
|
|
environment:
|
|
|
|
DOCKER_BUILDKIT: 1
|
2023-03-07 16:28:10 +01:00
|
|
|
changed_when: true
|
2022-07-18 10:22:05 +02:00
|
|
|
when: "matrix_synapse_git_pull_results.changed | bool or matrix_synapse_docker_image_check_result.stdout == ''"
|
2020-02-17 21:48:48 +01:00
|
|
|
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Ensure Synapse Docker image is pulled
|
2022-10-28 13:20:17 +02:00
|
|
|
community.docker.docker_image:
|
2018-11-01 07:46:47 +01:00
|
|
|
name: "{{ matrix_synapse_docker_image }}"
|
2019-05-22 12:43:33 +02:00
|
|
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
2019-06-10 13:23:51 +02:00
|
|
|
force_source: "{{ matrix_synapse_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_synapse_docker_image_force_pull }}"
|
2020-03-15 09:15:27 +01:00
|
|
|
when: "not matrix_synapse_container_image_self_build"
|
2022-03-17 16:37:11 +01:00
|
|
|
register: result
|
2022-11-04 15:44:29 +01:00
|
|
|
retries: "{{ devture_playbook_help_container_retries_count }}"
|
|
|
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
2022-03-17 16:37:11 +01:00
|
|
|
until: result is not failed
|
2018-08-17 08:02:12 +02:00
|
|
|
|
2022-10-14 15:33:19 +02:00
|
|
|
- when: "matrix_synapse_container_image_customizations_enabled | bool"
|
|
|
|
block:
|
|
|
|
- name: Ensure customizations Dockerfile is created
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: "{{ role_path }}/templates/synapse/customizations/Dockerfile.j2"
|
|
|
|
dest: "{{ matrix_synapse_customized_docker_src_files_path }}/Dockerfile"
|
2023-02-17 16:16:50 +01:00
|
|
|
owner: "{{ matrix_synapse_uid }}"
|
|
|
|
group: "{{ matrix_synapse_gid }}"
|
2022-10-14 15:33:19 +02:00
|
|
|
mode: 0640
|
2023-07-06 19:18:18 +02:00
|
|
|
register: matrix_synapse_container_image_customizations_dockerfile_result
|
2022-10-14 15:33:19 +02:00
|
|
|
|
|
|
|
- name: Ensure customized Docker image for Synapse is built
|
2022-10-28 13:20:17 +02:00
|
|
|
community.docker.docker_image:
|
2022-10-14 15:33:19 +02:00
|
|
|
name: "{{ matrix_synapse_docker_image_customized }}"
|
|
|
|
source: build
|
2023-07-06 19:18:18 +02:00
|
|
|
force_source: "{{ matrix_synapse_container_image_customizations_dockerfile_result.changed or matrix_synapse_docker_image_customized_force_source }}"
|
2022-10-14 15:33:19 +02:00
|
|
|
build:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
path: "{{ matrix_synapse_customized_docker_src_files_path }}"
|
2023-02-17 18:37:34 +01:00
|
|
|
nocache: "{{ matrix_synapse_docker_image_customized_build_nocache }}"
|
2022-10-14 15:33:19 +02:00
|
|
|
|
2019-04-23 09:06:42 +02:00
|
|
|
# We do this so that the signing key would get generated.
|
|
|
|
#
|
|
|
|
# This will also generate a default homeserver.yaml configuration file and a log configuration file.
|
2022-02-09 13:03:06 +01:00
|
|
|
# We don't care about those configuration files, as we replace them with our own anyway (see below).
|
2019-02-25 09:42:27 +01:00
|
|
|
#
|
|
|
|
# We don't use the `docker_container` module, because using it with `cap_drop` requires
|
2022-02-09 13:03:06 +01:00
|
|
|
# a very recent docker-py version, which is not available for a lot of people yet.
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Generate initial Synapse config and signing key
|
2023-03-07 16:28:10 +01:00
|
|
|
ansible.builtin.command:
|
|
|
|
cmd: |
|
|
|
|
docker run
|
|
|
|
--rm
|
|
|
|
--name=matrix-config
|
|
|
|
--user={{ matrix_synapse_uid }}:{{ matrix_synapse_gid }}
|
|
|
|
--cap-drop=ALL
|
|
|
|
--mount type=bind,src={{ matrix_synapse_config_dir_path }},dst=/data
|
|
|
|
-e SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
|
|
|
-e SYNAPSE_SERVER_NAME={{ matrix_server_fqn_matrix }}
|
|
|
|
-e SYNAPSE_REPORT_STATS=no
|
|
|
|
{{ matrix_synapse_docker_image }}
|
|
|
|
generate
|
|
|
|
creates: "{{ matrix_synapse_config_dir_path }}/{{ matrix_server_fqn_matrix }}.signing.key"
|
2018-08-17 08:02:12 +02:00
|
|
|
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Ensure Synapse homeserver config installed
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.copy:
|
2022-07-18 10:22:05 +02:00
|
|
|
content: "{{ matrix_synapse_configuration | to_nice_yaml(indent=2, width=999999) }}"
|
2018-08-17 08:02:12 +02:00
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/homeserver.yaml"
|
|
|
|
mode: 0644
|
2023-02-17 16:16:50 +01:00
|
|
|
owner: "{{ matrix_synapse_uid }}"
|
|
|
|
group: "{{ matrix_synapse_gid }}"
|
2018-08-17 08:02:12 +02:00
|
|
|
|
2019-04-23 09:20:56 +02:00
|
|
|
- name: Ensure Synapse log config installed
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2018-08-17 08:02:12 +02:00
|
|
|
src: "{{ matrix_synapse_template_synapse_log }}"
|
2019-02-28 10:51:09 +01:00
|
|
|
dest: "{{ matrix_synapse_config_dir_path }}/{{ matrix_server_fqn_matrix }}.log.config"
|
2018-08-17 08:02:12 +02:00
|
|
|
mode: 0644
|
|
|
|
|
2023-02-17 15:13:38 +01:00
|
|
|
- name: Ensure Synapse container network is created
|
|
|
|
community.general.docker_network:
|
|
|
|
name: "{{ matrix_synapse_container_network }}"
|
|
|
|
driver: bridge
|
|
|
|
|
2018-08-17 08:02:12 +02:00
|
|
|
- name: Ensure matrix-synapse.service installed
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2019-01-12 16:53:00 +01:00
|
|
|
src: "{{ role_path }}/templates/synapse/systemd/matrix-synapse.service.j2"
|
2022-11-04 15:38:38 +01:00
|
|
|
dest: "{{ devture_systemd_docker_base_systemd_path }}/matrix-synapse.service"
|
2018-08-17 08:02:12 +02:00
|
|
|
mode: 0644
|
2019-03-03 10:55:15 +01:00
|
|
|
|
2022-11-27 08:26:18 +01:00
|
|
|
- name: Ensure register-user script created
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2022-11-27 08:26:18 +01:00
|
|
|
src: "{{ role_path }}/templates/synapse/bin/register-user.j2"
|
|
|
|
dest: "{{ matrix_synapse_bin_path }}/register-user"
|
2021-05-28 07:56:46 +02:00
|
|
|
mode: 0755
|
2022-06-23 16:44:11 +02:00
|
|
|
|
|
|
|
- name: Generate sample prometheus.yml for external scraping
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.template:
|
2022-06-23 16:44:11 +02:00
|
|
|
src: "{{ role_path }}/templates/synapse/prometheus/external_prometheus.yml.example.j2"
|
|
|
|
dest: "{{ matrix_synapse_base_path }}/external_prometheus.yml.example"
|
2023-02-17 16:16:50 +01:00
|
|
|
owner: "{{ matrix_synapse_uid }}"
|
|
|
|
group: "{{ matrix_synapse_gid }}"
|
2022-06-23 16:44:11 +02:00
|
|
|
mode: 0644
|
2022-07-18 10:22:05 +02:00
|
|
|
when: matrix_synapse_metrics_proxying_enabled | bool
|