mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-02-25 08:24:14 +01:00
This is done for a few reasons: - less globals and more indepdendence for each role is better. We rely on various externally-hosted roles and they don't rely on this global either. - `matrix_container_global_registry_prefix` could make people think they could just override this variable and have all their images pull from elsewhere. This is rarely the case, unless you've taken special care to mirror all the various components (from their respective registries) to your own. In such a case, you probably know what you're mirroring and can adjust individual variables. - nowadays, various components live on different registries. With Docker Inc tightening rate limits for Docker Hub, it's even more likely that we'll see increased diversity in where images are hosted
58 lines
3.4 KiB
YAML
58 lines
3.4 KiB
YAML
---
|
|
# E2EE aware proxy daemon for Matrix clients.
|
|
# Project source code URL: https://github.com/matrix-org/pantalaimon
|
|
|
|
matrix_pantalaimon_enabled: true
|
|
|
|
matrix_pantalaimon_version: "0.10.5"
|
|
|
|
matrix_pantalaimon_container_image_self_build: false
|
|
matrix_pantalaimon_container_image_self_build_repo: "https://github.com/matrix-org/pantalaimon.git"
|
|
matrix_pantalaimon_container_image_self_build_repo_version: "{{ 'main' if matrix_pantalaimon_version == 'latest' else matrix_pantalaimon_version }}"
|
|
|
|
matrix_pantalaimon_docker_image: "{{ matrix_pantalaimon_docker_image_name_prefix }}matrixdotorg/pantalaimon:v{{ matrix_pantalaimon_version }}"
|
|
matrix_pantalaimon_docker_image_name_prefix: "{{ 'localhost/' if matrix_pantalaimon_container_image_self_build else 'docker.io/' }}"
|
|
matrix_pantalaimon_docker_image_force_pull: "{{ matrix_pantalaimon_docker_image.endswith(':latest') }}"
|
|
|
|
matrix_pantalaimon_base_path: "{{ matrix_base_data_path }}/pantalaimon"
|
|
matrix_pantalaimon_data_path: "{{ matrix_pantalaimon_base_path }}/data"
|
|
matrix_pantalaimon_container_src_files_path: "{{ matrix_pantalaimon_base_path }}/container-src"
|
|
|
|
# The base container network
|
|
matrix_pantalaimon_container_network: ''
|
|
|
|
# A list of additional container networks that the container would be connected to.
|
|
# The role does not create these networks, so make sure they already exist.
|
|
matrix_pantalaimon_container_additional_networks: "{{ matrix_pantalaimon_container_additional_networks_auto + matrix_pantalaimon_container_additional_networks_custom }}"
|
|
matrix_pantalaimon_container_additional_networks_auto: []
|
|
matrix_pantalaimon_container_additional_networks_custom: []
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_pantalaimon_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-pantalaimon.service depends on
|
|
matrix_pantalaimon_systemd_required_services_list: "{{ matrix_pantalaimon_systemd_required_services_list_default + matrix_pantalaimon_systemd_required_services_list_auto + matrix_pantalaimon_systemd_required_services_list_custom }}"
|
|
matrix_pantalaimon_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
|
|
matrix_pantalaimon_systemd_required_services_list_auto: []
|
|
matrix_pantalaimon_systemd_required_services_list_custom: []
|
|
|
|
# List of systemd services that matrix-pantalaimon.service wants
|
|
matrix_pantalaimon_systemd_wanted_services_list: "{{ matrix_pantalaimon_systemd_wanted_services_list_default + matrix_pantalaimon_systemd_wanted_services_list_auto + matrix_pantalaimon_systemd_wanted_services_list_custom }}"
|
|
matrix_pantalaimon_systemd_wanted_services_list_default: []
|
|
matrix_pantalaimon_systemd_wanted_services_list_auto: []
|
|
matrix_pantalaimon_systemd_wanted_services_list_custom: []
|
|
|
|
# Valid values: Error, Warning, Info, Debug
|
|
matrix_pantalaimon_log_level: Warning
|
|
|
|
# Base URL where matrix-pantalaimon can reach your homeserver C-S API.
|
|
# If the homeserver runs on the same machine, you may need to add its service to `matrix_pantalaimon_systemd_required_services_list`.
|
|
matrix_pantalaimon_homeserver_url: ""
|
|
|
|
# Default configuration template which covers the generic use case.
|
|
# You can customize it by controlling the various variables inside it.
|
|
#
|
|
# For a more advanced customization, you can
|
|
# completely replace this variable with your own template.
|
|
matrix_pantalaimon_configuration: "{{ lookup('template', 'templates/pantalaimon.conf.j2') }}"
|