| @@ -0,0 +1,14 @@ | |||||
| { | |||||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | |||||
| "extends": [ | |||||
| "config:base" | |||||
| ], | |||||
| "regexManagers": [ | |||||
| { | |||||
| "fileMatch": ["defaults/main.yml$"], | |||||
| "matchStrings": [ | |||||
| "# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[a-z-0-9]+?))?\\s+[A-Za-z0-9_]+?(?:_version|_tag)\\s*:\\s*[\"']?(?<currentValue>.+?)[\"']?\\s" | |||||
| ] | |||||
| } | |||||
| ] | |||||
| } | |||||
| @@ -1,3 +1,16 @@ | |||||
| # 2023-10-18 | |||||
| ## Postgres parameters are automatically tuned now | |||||
| The playbook has provided some hints about [Tuning PostgreSQL](docs/maintenance-postgres.md#tuning-postgresql) for quite a while now. | |||||
| From now on, the [Postgres Ansible role](https://github.com/devture/com.devture.ansible.role.postgres) automatically tunes your Postgres configuration with the same [calculation logic](https://github.com/le0pard/pgtune/blob/master/src/features/configuration/configurationSlice.js) that powers https://pgtune.leopard.in.ua/. | |||||
| Our [Tuning PostgreSQL](docs/maintenance-postgres.md#tuning-postgresql) documentation page has details about how you can turn auto-tuning off or adjust the automatically-determined Postgres configuration parameters manually. | |||||
| People who [enable load-balancing with Synapse workers](docs/configuring-playbook-synapse.md#load-balancing-with-workers) no longer need to increase the maximum number of Postgres connections manually (previously done via `devture_postgres_process_extra_arguments`). There's a new variable (`devture_postgres_max_connections`) for controlling this number and the playbook automatically raises its value from `200` to `500` for setups which enable workers. | |||||
| # 2023-08-31 | # 2023-08-31 | ||||
| ## SchildiChat support | ## SchildiChat support | ||||
| @@ -65,7 +65,7 @@ docker run -it --rm \ | |||||
| -w /work \ | -w /work \ | ||||
| -v `pwd`:/work \ | -v `pwd`:/work \ | ||||
| --entrypoint=/bin/sh \ | --entrypoint=/bin/sh \ | ||||
| docker.io/devture/ansible:2.13.6-r0-3 | |||||
| docker.io/devture/ansible:2.14.5-r0-0 | |||||
| ``` | ``` | ||||
| Once you execute the above command, you'll be dropped into a `/work` directory inside a Docker container. | Once you execute the above command, you'll be dropped into a `/work` directory inside a Docker container. | ||||
| @@ -86,7 +86,7 @@ docker run -it --rm \ | |||||
| -v `pwd`:/work \ | -v `pwd`:/work \ | ||||
| -v $HOME/.ssh/id_rsa:/root/.ssh/id_rsa:ro \ | -v $HOME/.ssh/id_rsa:/root/.ssh/id_rsa:ro \ | ||||
| --entrypoint=/bin/sh \ | --entrypoint=/bin/sh \ | ||||
| docker.io/devture/ansible:2.13.6-r0-3 | |||||
| docker.io/devture/ansible:2.14.5-r0-0 | |||||
| ``` | ``` | ||||
| The above command tries to mount an SSH key (`$HOME/.ssh/id_rsa`) into the container (at `/root/.ssh/id_rsa`). | The above command tries to mount an SSH key (`$HOME/.ssh/id_rsa`) into the container (at `/root/.ssh/id_rsa`). | ||||
| @@ -34,13 +34,7 @@ We support a few configuration presets (`matrix_synapse_workers_preset: one-of-e | |||||
| If you'd like more customization power, you can start with one of the presets and tweak various `matrix_synapse_workers_*_count` variables manually. | If you'd like more customization power, you can start with one of the presets and tweak various `matrix_synapse_workers_*_count` variables manually. | ||||
| If you increase worker counts too much, you may need to increase the maximum number of Postgres connections too (example): | |||||
| ```yaml | |||||
| devture_postgres_process_extra_arguments: [ | |||||
| "-c 'max_connections=200'" | |||||
| ] | |||||
| ``` | |||||
| When Synapse workers are enabled, the integrated [Postgres database is tuned](maintenance-postgres.md#tuning-postgresql), so that the maximum number of Postgres connections are increased from `200` to `500`. If you need to decrease or increase the number of maximum Postgres connections further, use the `devture_postgres_max_connections` variable. | |||||
| In case any problems occur, make sure to have a look at the [list of synapse issues about workers](https://github.com/matrix-org/synapse/issues?q=workers+in%3Atitle) and your `journalctl --unit 'matrix-*'`. | In case any problems occur, make sure to have a look at the [list of synapse issues about workers](https://github.com/matrix-org/synapse/issues?q=workers+in%3Atitle) and your `journalctl --unit 'matrix-*'`. | ||||
| @@ -106,63 +106,15 @@ Example: `--extra-vars="postgres_dump_name=matrix-postgres-dump.sql"` | |||||
| ## Tuning PostgreSQL | ## Tuning PostgreSQL | ||||
| PostgreSQL can be tuned to make it run faster. This is done by passing extra arguments to Postgres with the `devture_postgres_process_extra_arguments` variable. You should use a website like https://pgtune.leopard.in.ua/ or information from https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server to determine what Postgres settings you should change. | |||||
| PostgreSQL can be [tuned](https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server) to make it run faster. This is done by passing extra arguments to the Postgres process. | |||||
| **Note**: the configuration generator at https://pgtune.leopard.in.ua/ adds spaces around the `=` sign, which is invalid. You'll need to remove it manually (`max_connections = 300` -> `max_connections=300`) | |||||
| The [Postgres Ansible role](https://github.com/devture/com.devture.ansible.role.postgres) **already does some tuning by default**, which matches the [tuning logic](https://github.com/le0pard/pgtune/blob/master/src/features/configuration/configurationSlice.js) done by websites like https://pgtune.leopard.in.ua/. | |||||
| You can manually influence some of the tuning variables . These parameters (variables) are injected via the `devture_postgres_postgres_process_extra_arguments_auto` variable. | |||||
| ### Here are some examples: | |||||
| Most users should be fine with the automatically-done tuning. However, you may wish to: | |||||
| These are not recommended values and they may not work well for you. This is just to give you an idea of some of the options that can be set. If you are an experienced PostgreSQL admin feel free to update this documentation with better examples. | |||||
| - **adjust the automatically-deterimned tuning parameters manually**: change the values for the tuning variables defined in the Postgres role's [default configuration file](https://github.com/devture/com.devture.ansible.role.postgres/blob/main/defaults/main.yml) (see `devture_postgres_max_connections`, `devture_postgres_data_storage` etc). These variables are ultimately passed to Postgres via a `devture_postgres_postgres_process_extra_arguments_auto` variable | |||||
| Here is an example config for a small 2 core server with 4GB of RAM and SSD storage: | |||||
| ``` | |||||
| devture_postgres_process_extra_arguments: [ | |||||
| "-c shared_buffers=128MB", | |||||
| "-c effective_cache_size=2304MB", | |||||
| "-c effective_io_concurrency=100", | |||||
| "-c random_page_cost=2.0", | |||||
| "-c min_wal_size=500MB", | |||||
| ] | |||||
| ``` | |||||
| - **turn automatically-performed tuning off**: override it like this: `devture_postgres_postgres_process_extra_arguments_auto: []` | |||||
| Here is an example config for a 4 core server with 8GB of RAM on a Virtual Private Server (VPS); the paramters have been configured using https://pgtune.leopard.in.ua with the following setup: PostgreSQL version 12, OS Type: Linux, DB Type: Mixed type of application, Data Storage: SSD storage: | |||||
| ``` | |||||
| devture_postgres_process_extra_arguments: [ | |||||
| "-c max_connections=100", | |||||
| "-c shared_buffers=2GB", | |||||
| "-c effective_cache_size=6GB", | |||||
| "-c maintenance_work_mem=512MB", | |||||
| "-c checkpoint_completion_target=0.9", | |||||
| "-c wal_buffers=16MB", | |||||
| "-c default_statistics_target=100", | |||||
| "-c random_page_cost=1.1", | |||||
| "-c effective_io_concurrency=200", | |||||
| "-c work_mem=5242kB", | |||||
| "-c min_wal_size=1GB", | |||||
| "-c max_wal_size=4GB", | |||||
| "-c max_worker_processes=4", | |||||
| "-c max_parallel_workers_per_gather=2", | |||||
| "-c max_parallel_workers=4", | |||||
| "-c max_parallel_maintenance_workers=2", | |||||
| ] | |||||
| ``` | |||||
| Here is an example config for a large 6 core server with 24GB of RAM: | |||||
| ``` | |||||
| devture_postgres_process_extra_arguments: [ | |||||
| "-c max_connections=40", | |||||
| "-c shared_buffers=1536MB", | |||||
| "-c checkpoint_completion_target=0.7", | |||||
| "-c wal_buffers=16MB", | |||||
| "-c default_statistics_target=100", | |||||
| "-c random_page_cost=1.1", | |||||
| "-c effective_io_concurrency=100", | |||||
| "-c work_mem=2621kB", | |||||
| "-c min_wal_size=1GB", | |||||
| "-c max_wal_size=4GB", | |||||
| "-c max_worker_processes=6", | |||||
| "-c max_parallel_workers_per_gather=3", | |||||
| "-c max_parallel_workers=6", | |||||
| "-c max_parallel_maintenance_workers=3", | |||||
| ] | |||||
| ``` | |||||
| - **add additional tuning parameters**: define your additional Postgres configuration parameters in `devture_postgres_postgres_process_extra_arguments_custom`. See `devture_postgres_postgres_process_extra_arguments_auto` defined in the Postgres role's [default configuration file](https://github.com/devture/com.devture.ansible.role.postgres/blob/main/defaults/main.yml) for inspiration | |||||
| @@ -72,8 +72,10 @@ You should then be able to browse the adminer database administration GUI at htt | |||||
| Synapse's presence feature which tracks which users are online and which are offline can use a lot of processing power. You can disable presence by adding `matrix_synapse_presence_enabled: false` to your `vars.yml` file. | Synapse's presence feature which tracks which users are online and which are offline can use a lot of processing power. You can disable presence by adding `matrix_synapse_presence_enabled: false` to your `vars.yml` file. | ||||
| If you have enough compute resources (CPU & RAM), you can make Synapse better use of them by [enabling load-balancing with workers](configuring-playbook-synapse.md#load-balancing-with-workers). | |||||
| Tuning Synapse's cache factor can help reduce RAM usage. [See the upstream documentation](https://github.com/matrix-org/synapse#help-synapse-is-slow-and-eats-all-my-ram-cpu) for more information on what value to set the cache factor to. Use the variable `matrix_synapse_caches_global_factor` to set the cache factor. | Tuning Synapse's cache factor can help reduce RAM usage. [See the upstream documentation](https://github.com/matrix-org/synapse#help-synapse-is-slow-and-eats-all-my-ram-cpu) for more information on what value to set the cache factor to. Use the variable `matrix_synapse_caches_global_factor` to set the cache factor. | ||||
| Tuning your PostgreSQL database will also make Synapse run significantly faster. See [maintenance-postgres.md##tuning-postgresql](maintenance-postgres.md##tuning-postgresql). | |||||
| [Tuning your PostgreSQL database](maintenance-postgres.md#tuning-postgresql) could also improve Synapse performance. The playbook tunes the integrated Postgres database automatically, but based on your needs you may wish to adjust tuning variables manually. If you're using an [external Postgres database](configuring-playbook-external-postgres.md), you will aslo need to tune Postgres manually. | |||||
| See also [How do I optimize this setup for a low-power server?](faq.md#how-do-i-optimize-this-setup-for-a-low-power-server). | See also [How do I optimize this setup for a low-power server?](faq.md#how-do-i-optimize-this-setup-for-a-low-power-server). | ||||
| @@ -2964,6 +2964,8 @@ devture_postgres_db_name: matrix | |||||
| devture_postgres_systemd_services_to_stop_for_maintenance_list_auto: "{{ devture_systemd_service_manager_services_list_auto | map(attribute='name') | reject('equalto', (devture_postgres_identifier + '.service')) }}" | devture_postgres_systemd_services_to_stop_for_maintenance_list_auto: "{{ devture_systemd_service_manager_services_list_auto | map(attribute='name') | reject('equalto', (devture_postgres_identifier + '.service')) }}" | ||||
| devture_postgres_max_connections: "{{ 500 if matrix_synapse_workers_enabled else 200 }}" | |||||
| devture_postgres_managed_databases_auto: | | devture_postgres_managed_databases_auto: | | ||||
| {{ | {{ | ||||
| ([{ | ([{ | ||||
| @@ -4,7 +4,7 @@ | |||||
| version: v1.0.0-1 | version: v1.0.0-1 | ||||
| name: auxiliary | name: auxiliary | ||||
| - src: git+https://gitlab.com/etke.cc/roles/backup_borg.git | - src: git+https://gitlab.com/etke.cc/roles/backup_borg.git | ||||
| version: v1.2.6-1.8.2-0 | |||||
| version: v1.2.6-1.8.3-0 | |||||
| - src: git+https://github.com/devture/com.devture.ansible.role.container_socket_proxy.git | - src: git+https://github.com/devture/com.devture.ansible.role.container_socket_proxy.git | ||||
| version: v0.1.1-2 | version: v0.1.1-2 | ||||
| - src: git+https://github.com/devture/com.devture.ansible.role.docker_sdk_for_python.git | - src: git+https://github.com/devture/com.devture.ansible.role.docker_sdk_for_python.git | ||||
| @@ -16,7 +16,7 @@ | |||||
| - src: git+https://github.com/devture/com.devture.ansible.role.playbook_state_preserver.git | - src: git+https://github.com/devture/com.devture.ansible.role.playbook_state_preserver.git | ||||
| version: ff2fd42e1c1a9e28e3312bbd725395f9c2fc7f16 | version: ff2fd42e1c1a9e28e3312bbd725395f9c2fc7f16 | ||||
| - src: git+https://github.com/devture/com.devture.ansible.role.postgres.git | - src: git+https://github.com/devture/com.devture.ansible.role.postgres.git | ||||
| version: v16.0-5 | |||||
| version: v16.0-8 | |||||
| - src: git+https://github.com/devture/com.devture.ansible.role.postgres_backup.git | - src: git+https://github.com/devture/com.devture.ansible.role.postgres_backup.git | ||||
| version: a0cc7c1c696872ba8880d9c5e5a54098de825030 | version: a0cc7c1c696872ba8880d9c5e5a54098de825030 | ||||
| - src: git+https://github.com/devture/com.devture.ansible.role.systemd_docker_base.git | - src: git+https://github.com/devture/com.devture.ansible.role.systemd_docker_base.git | ||||
| @@ -42,10 +42,11 @@ | |||||
| - src: git+https://gitlab.com/etke.cc/roles/ntfy.git | - src: git+https://gitlab.com/etke.cc/roles/ntfy.git | ||||
| version: v2.7.0-2 | version: v2.7.0-2 | ||||
| - src: git+https://github.com/mother-of-all-self-hosting/ansible-role-prometheus.git | - src: git+https://github.com/mother-of-all-self-hosting/ansible-role-prometheus.git | ||||
| version: v2.47.1-0 | |||||
| version: v2.47.2-0 | |||||
| name: prometheus | name: prometheus | ||||
| - src: git+https://gitlab.com/etke.cc/roles/prometheus_node_exporter.git | |||||
| - src: git+https://github.com/mother-of-all-self-hosting/ansible-role-prometheus-node-exporter.git | |||||
| version: v1.6.1-0 | version: v1.6.1-0 | ||||
| name: prometheus_node_exporter | |||||
| - src: git+https://github.com/mother-of-all-self-hosting/ansible-role-prometheus-postgres-exporter.git | - src: git+https://github.com/mother-of-all-self-hosting/ansible-role-prometheus-postgres-exporter.git | ||||
| version: v0.14.0-0 | version: v0.14.0-0 | ||||
| name: prometheus_postgres_exporter | name: prometheus_postgres_exporter | ||||
| @@ -1,6 +1,6 @@ | |||||
| #jinja2: lstrip_blocks: "True" | #jinja2: lstrip_blocks: "True" | ||||
| { | { | ||||
| "admins": {{ matrix_homeserver_admin_contacts|to_json }} | |||||
| "contacts": {{ matrix_homeserver_admin_contacts|to_json }} | |||||
| {% if matrix_homeserver_support_url %}, | {% if matrix_homeserver_support_url %}, | ||||
| "support_page": {{ matrix_homeserver_support_url|to_json }} | "support_page": {{ matrix_homeserver_support_url|to_json }} | ||||
| {% endif %} | {% endif %} | ||||
| @@ -5,6 +5,7 @@ | |||||
| matrix_bot_buscarron_enabled: true | matrix_bot_buscarron_enabled: true | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/etke.cc/buscarron | |||||
| matrix_bot_buscarron_version: v1.3.1 | matrix_bot_buscarron_version: v1.3.1 | ||||
| # The hostname at which Buscarron is served. | # The hostname at which Buscarron is served. | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_bot_chatgpt_enabled: true | matrix_bot_chatgpt_enabled: true | ||||
| # renovate: datasource=docker depName=ghcr.io/matrixgpt/matrix-chatgpt-bot | |||||
| matrix_bot_chatgpt_version: 3.1.2 | matrix_bot_chatgpt_version: 3.1.2 | ||||
| matrix_bot_chatgpt_container_image_self_build: false | matrix_bot_chatgpt_container_image_self_build: false | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_bot_draupnir_enabled: true | matrix_bot_draupnir_enabled: true | ||||
| # renovate: datasource=docker depName=gnuxie/draupnir | |||||
| matrix_bot_draupnir_version: "v1.85.1" | matrix_bot_draupnir_version: "v1.85.1" | ||||
| matrix_bot_draupnir_container_image_self_build: false | matrix_bot_draupnir_container_image_self_build: false | ||||
| @@ -5,6 +5,7 @@ | |||||
| matrix_bot_go_neb_enabled: true | matrix_bot_go_neb_enabled: true | ||||
| # renovate: datasource=docker depName=matrixdotorg/go-neb | |||||
| matrix_bot_go_neb_version: latest | matrix_bot_go_neb_version: latest | ||||
| matrix_bot_go_neb_scheme: https | matrix_bot_go_neb_scheme: https | ||||
| @@ -20,6 +20,7 @@ matrix_bot_honoroit_docker_repo: "https://gitlab.com/etke.cc/honoroit.git" | |||||
| matrix_bot_honoroit_docker_repo_version: "{{ matrix_bot_honoroit_version }}" | matrix_bot_honoroit_docker_repo_version: "{{ matrix_bot_honoroit_version }}" | ||||
| matrix_bot_honoroit_docker_src_files_path: "{{ matrix_base_data_path }}/honoroit/docker-src" | matrix_bot_honoroit_docker_src_files_path: "{{ matrix_base_data_path }}/honoroit/docker-src" | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/etke.cc/honoroit | |||||
| matrix_bot_honoroit_version: v0.9.19 | matrix_bot_honoroit_version: v0.9.19 | ||||
| matrix_bot_honoroit_docker_image: "{{ matrix_bot_honoroit_docker_image_name_prefix }}etke.cc/honoroit:{{ matrix_bot_honoroit_version }}" | matrix_bot_honoroit_docker_image: "{{ matrix_bot_honoroit_docker_image_name_prefix }}etke.cc/honoroit:{{ matrix_bot_honoroit_version }}" | ||||
| matrix_bot_honoroit_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_honoroit_container_image_self_build else 'registry.gitlab.com/' }}" | matrix_bot_honoroit_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_honoroit_container_image_self_build else 'registry.gitlab.com/' }}" | ||||
| @@ -8,6 +8,7 @@ matrix_bot_matrix_registration_bot_docker_repo: "https://github.com/moan0s/matri | |||||
| matrix_bot_matrix_registration_bot_docker_repo_version: "{{ 'main' if matrix_bot_matrix_registration_bot_version == 'latest' else ('v' + matrix_bot_matrix_registration_bot_version) }}" | matrix_bot_matrix_registration_bot_docker_repo_version: "{{ 'main' if matrix_bot_matrix_registration_bot_version == 'latest' else ('v' + matrix_bot_matrix_registration_bot_version) }}" | ||||
| matrix_bot_matrix_registration_bot_docker_src_files_path: "{{ matrix_bot_matrix_registration_bot_base_path }}/docker-src" | matrix_bot_matrix_registration_bot_docker_src_files_path: "{{ matrix_bot_matrix_registration_bot_base_path }}/docker-src" | ||||
| # renovate: datasource=docker depName=moanos/matrix-registration-bot | |||||
| matrix_bot_matrix_registration_bot_version: 1.3.0 | matrix_bot_matrix_registration_bot_version: 1.3.0 | ||||
| matrix_bot_matrix_registration_bot_docker_iteration: 0 | matrix_bot_matrix_registration_bot_docker_iteration: 0 | ||||
| matrix_bot_matrix_registration_bot_docker_tag: "{{ matrix_bot_matrix_registration_bot_version }}-{{ matrix_bot_matrix_registration_bot_docker_iteration}}" | matrix_bot_matrix_registration_bot_docker_tag: "{{ matrix_bot_matrix_registration_bot_version }}-{{ matrix_bot_matrix_registration_bot_docker_iteration}}" | ||||
| @@ -9,6 +9,7 @@ matrix_bot_matrix_reminder_bot_docker_repo: "https://github.com/anoadragon453/ma | |||||
| matrix_bot_matrix_reminder_bot_docker_repo_version: "{{ matrix_bot_matrix_reminder_bot_version }}" | matrix_bot_matrix_reminder_bot_docker_repo_version: "{{ matrix_bot_matrix_reminder_bot_version }}" | ||||
| matrix_bot_matrix_reminder_bot_docker_src_files_path: "{{ matrix_base_data_path }}/matrix-reminder-bot/docker-src" | matrix_bot_matrix_reminder_bot_docker_src_files_path: "{{ matrix_base_data_path }}/matrix-reminder-bot/docker-src" | ||||
| # renovate: datasource=docker depName=anoa/matrix-reminder-bot | |||||
| matrix_bot_matrix_reminder_bot_version: release-v0.2.1 | matrix_bot_matrix_reminder_bot_version: release-v0.2.1 | ||||
| matrix_bot_matrix_reminder_bot_docker_image: "{{ matrix_container_global_registry_prefix }}anoa/matrix-reminder-bot:{{ matrix_bot_matrix_reminder_bot_version }}" | matrix_bot_matrix_reminder_bot_docker_image: "{{ matrix_container_global_registry_prefix }}anoa/matrix-reminder-bot:{{ matrix_bot_matrix_reminder_bot_version }}" | ||||
| matrix_bot_matrix_reminder_bot_docker_image_force_pull: "{{ matrix_bot_matrix_reminder_bot_docker_image.endswith(':latest') }}" | matrix_bot_matrix_reminder_bot_docker_image_force_pull: "{{ matrix_bot_matrix_reminder_bot_docker_image.endswith(':latest') }}" | ||||
| @@ -10,6 +10,7 @@ matrix_bot_maubot_docker_src_files_path: "{{ matrix_bot_maubot_base_path }}/dock | |||||
| matrix_bot_maubot_docker_repo_version: "{{ 'master' if matrix_bot_maubot_version == 'latest' else matrix_bot_maubot_version }}" | matrix_bot_maubot_docker_repo_version: "{{ 'master' if matrix_bot_maubot_version == 'latest' else matrix_bot_maubot_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/maubot/maubot | |||||
| matrix_bot_maubot_version: v0.4.2 | matrix_bot_maubot_version: v0.4.2 | ||||
| matrix_bot_maubot_docker_image: "{{ matrix_bot_maubot_docker_image_name_prefix }}maubot/maubot:{{ matrix_bot_maubot_version }}" | matrix_bot_maubot_docker_image: "{{ matrix_bot_maubot_docker_image_name_prefix }}maubot/maubot:{{ matrix_bot_maubot_version }}" | ||||
| matrix_bot_maubot_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_maubot_container_image_self_build else 'dock.mau.dev/' }}" | matrix_bot_maubot_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_maubot_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_bot_mjolnir_enabled: true | matrix_bot_mjolnir_enabled: true | ||||
| # renovate: datasource=docker depName=matrixdotorg/mjolnir | |||||
| matrix_bot_mjolnir_version: "v1.6.4" | matrix_bot_mjolnir_version: "v1.6.4" | ||||
| matrix_bot_mjolnir_container_image_self_build: false | matrix_bot_mjolnir_container_image_self_build: false | ||||
| @@ -9,6 +9,7 @@ matrix_bot_postmoogle_docker_repo: "https://gitlab.com/etke.cc/postmoogle.git" | |||||
| matrix_bot_postmoogle_docker_repo_version: "{{ 'main' if matrix_bot_postmoogle_version == 'latest' else matrix_bot_postmoogle_version }}" | matrix_bot_postmoogle_docker_repo_version: "{{ 'main' if matrix_bot_postmoogle_version == 'latest' else matrix_bot_postmoogle_version }}" | ||||
| matrix_bot_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src" | matrix_bot_postmoogle_docker_src_files_path: "{{ matrix_base_data_path }}/postmoogle/docker-src" | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/etke.cc/postmoogle | |||||
| matrix_bot_postmoogle_version: v0.9.16 | matrix_bot_postmoogle_version: v0.9.16 | ||||
| matrix_bot_postmoogle_docker_image: "{{ matrix_bot_postmoogle_docker_image_name_prefix }}etke.cc/postmoogle:{{ matrix_bot_postmoogle_version }}" | matrix_bot_postmoogle_docker_image: "{{ matrix_bot_postmoogle_docker_image_name_prefix }}etke.cc/postmoogle:{{ matrix_bot_postmoogle_version }}" | ||||
| matrix_bot_postmoogle_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_postmoogle_container_image_self_build else 'registry.gitlab.com/' }}" | matrix_bot_postmoogle_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_postmoogle_container_image_self_build else 'registry.gitlab.com/' }}" | ||||
| @@ -5,6 +5,7 @@ | |||||
| matrix_appservice_discord_enabled: false | matrix_appservice_discord_enabled: false | ||||
| matrix_appservice_discord_container_image_self_build: false | matrix_appservice_discord_container_image_self_build: false | ||||
| # renovate: datasource=docker depName=ghcr.io/matrix-org/matrix-appservice-discord | |||||
| matrix_appservice_discord_version: v4.0.0 | matrix_appservice_discord_version: v4.0.0 | ||||
| matrix_appservice_discord_docker_image: "{{ matrix_appservice_discord_docker_image_name_prefix }}matrix-org/matrix-appservice-discord:{{ matrix_appservice_discord_version }}" | matrix_appservice_discord_docker_image: "{{ matrix_appservice_discord_docker_image_name_prefix }}matrix-org/matrix-appservice-discord:{{ matrix_appservice_discord_version }}" | ||||
| matrix_appservice_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_appservice_discord_container_image_self_build else 'ghcr.io/' }}" | matrix_appservice_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_appservice_discord_container_image_self_build else 'ghcr.io/' }}" | ||||
| @@ -11,6 +11,7 @@ matrix_appservice_irc_docker_src_files_path: "{{ matrix_base_data_path }}/appser | |||||
| # matrix_appservice_irc_version used to contain the full Docker image tag (e.g. `release-X.X.X`). | # matrix_appservice_irc_version used to contain the full Docker image tag (e.g. `release-X.X.X`). | ||||
| # It's a bare version number now. We try to somewhat retain compatibility below. | # It's a bare version number now. We try to somewhat retain compatibility below. | ||||
| # renovate: datasource=docker depName=docker.io/matrixdotorg/matrix-appservice-irc | |||||
| matrix_appservice_irc_version: 1.0.1 | matrix_appservice_irc_version: 1.0.1 | ||||
| matrix_appservice_irc_docker_image: "{{ matrix_container_global_registry_prefix }}matrixdotorg/matrix-appservice-irc:{{ matrix_appservice_irc_docker_image_tag }}" | matrix_appservice_irc_docker_image: "{{ matrix_container_global_registry_prefix }}matrixdotorg/matrix-appservice-irc:{{ matrix_appservice_irc_docker_image_tag }}" | ||||
| matrix_appservice_irc_docker_image_tag: "{{ 'latest' if matrix_appservice_irc_version == 'latest' else ('release-' + matrix_appservice_irc_version) }}" | matrix_appservice_irc_docker_image_tag: "{{ 'latest' if matrix_appservice_irc_version == 'latest' else ('release-' + matrix_appservice_irc_version) }}" | ||||
| @@ -11,6 +11,7 @@ matrix_appservice_slack_docker_src_files_path: "{{ matrix_base_data_path }}/apps | |||||
| # matrix_appservice_slack_version used to contain the full Docker image tag (e.g. `release-X.X.X`). | # matrix_appservice_slack_version used to contain the full Docker image tag (e.g. `release-X.X.X`). | ||||
| # It's a bare version number now. We try to somewhat retain compatibility below. | # It's a bare version number now. We try to somewhat retain compatibility below. | ||||
| # renovate: datasource=docker depName=docker.io/matrixdotorg/matrix-appservice-slack | |||||
| matrix_appservice_slack_version: 2.1.2 | matrix_appservice_slack_version: 2.1.2 | ||||
| matrix_appservice_slack_docker_image: "{{ matrix_container_global_registry_prefix }}matrixdotorg/matrix-appservice-slack:{{ matrix_appservice_slack_docker_image_tag }}" | matrix_appservice_slack_docker_image: "{{ matrix_container_global_registry_prefix }}matrixdotorg/matrix-appservice-slack:{{ matrix_appservice_slack_docker_image_tag }}" | ||||
| matrix_appservice_slack_docker_image_tag: "{{ 'latest' if matrix_appservice_slack_version == 'latest' else ('release-' + matrix_appservice_slack_version) }}" | matrix_appservice_slack_docker_image_tag: "{{ 'latest' if matrix_appservice_slack_version == 'latest' else ('release-' + matrix_appservice_slack_version) }}" | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_beeper_linkedin_enabled: true | matrix_beeper_linkedin_enabled: true | ||||
| # renovate: datasource=docker depName=ghcr.io/beeper/linkedin | |||||
| matrix_beeper_linkedin_version: latest | matrix_beeper_linkedin_version: latest | ||||
| # See: https://github.com/beeper/linkedin/pkgs/container/linkedin | # See: https://github.com/beeper/linkedin/pkgs/container/linkedin | ||||
| @@ -8,6 +8,7 @@ matrix_go_skype_bridge_container_image_self_build: false | |||||
| matrix_go_skype_bridge_container_image_self_build_repo: "https://github.com/kelaresg/go-skype-bridge.git" | matrix_go_skype_bridge_container_image_self_build_repo: "https://github.com/kelaresg/go-skype-bridge.git" | ||||
| matrix_go_skype_bridge_container_image_self_build_branch: "{{ 'master' if matrix_go_skype_bridge_version == 'latest' else matrix_go_skype_bridge_version }}" | matrix_go_skype_bridge_container_image_self_build_branch: "{{ 'master' if matrix_go_skype_bridge_version == 'latest' else matrix_go_skype_bridge_version }}" | ||||
| # renovate: datasource=docker depName=nodefyme/go-skype-bridge | |||||
| matrix_go_skype_bridge_version: latest | matrix_go_skype_bridge_version: latest | ||||
| matrix_go_skype_bridge_docker_image: "{{ matrix_go_skype_bridge_docker_image_name_prefix }}nodefyme/go-skype-bridge:{{ matrix_go_skype_bridge_version }}" | matrix_go_skype_bridge_docker_image: "{{ matrix_go_skype_bridge_docker_image_name_prefix }}nodefyme/go-skype-bridge:{{ matrix_go_skype_bridge_version }}" | ||||
| matrix_go_skype_bridge_docker_image_name_prefix: "{{ 'localhost/' if matrix_go_skype_bridge_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_go_skype_bridge_docker_image_name_prefix: "{{ 'localhost/' if matrix_go_skype_bridge_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_heisenbridge_enabled: true | matrix_heisenbridge_enabled: true | ||||
| # renovate: datasource=docker depName=hif1/heisenbridge | |||||
| matrix_heisenbridge_version: 1.14.5 | matrix_heisenbridge_version: 1.14.5 | ||||
| matrix_heisenbridge_docker_image: "{{ matrix_container_global_registry_prefix }}hif1/heisenbridge:{{ matrix_heisenbridge_version }}" | matrix_heisenbridge_docker_image: "{{ matrix_container_global_registry_prefix }}hif1/heisenbridge:{{ matrix_heisenbridge_version }}" | ||||
| matrix_heisenbridge_docker_image_force_pull: "{{ matrix_heisenbridge_docker_image.endswith(':latest') }}" | matrix_heisenbridge_docker_image_force_pull: "{{ matrix_heisenbridge_docker_image.endswith(':latest') }}" | ||||
| @@ -10,6 +10,7 @@ matrix_hookshot_container_image_self_build: false | |||||
| matrix_hookshot_container_image_self_build_repo: "https://github.com/matrix-org/matrix-hookshot.git" | matrix_hookshot_container_image_self_build_repo: "https://github.com/matrix-org/matrix-hookshot.git" | ||||
| matrix_hookshot_container_image_self_build_branch: "{{ 'main' if matrix_hookshot_version == 'latest' else matrix_hookshot_version }}" | matrix_hookshot_container_image_self_build_branch: "{{ 'main' if matrix_hookshot_version == 'latest' else matrix_hookshot_version }}" | ||||
| # renovate: datasource=docker depName=halfshot/matrix-hookshot | |||||
| matrix_hookshot_version: 4.5.1 | matrix_hookshot_version: 4.5.1 | ||||
| matrix_hookshot_docker_image: "{{ matrix_hookshot_docker_image_name_prefix }}halfshot/matrix-hookshot:{{ matrix_hookshot_version }}" | matrix_hookshot_docker_image: "{{ matrix_hookshot_docker_image_name_prefix }}halfshot/matrix-hookshot:{{ matrix_hookshot_version }}" | ||||
| @@ -8,7 +8,9 @@ matrix_mautrix_discord_container_image_self_build: false | |||||
| matrix_mautrix_discord_container_image_self_build_repo: "https://mau.dev/mautrix/discord.git" | matrix_mautrix_discord_container_image_self_build_repo: "https://mau.dev/mautrix/discord.git" | ||||
| matrix_mautrix_discord_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_discord_version == 'latest' else matrix_mautrix_discord_version }}" | matrix_mautrix_discord_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_discord_version == 'latest' else matrix_mautrix_discord_version }}" | ||||
| matrix_mautrix_discord_version: v0.6.2 | |||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/discord | |||||
| matrix_mautrix_discord_version: v0.6.3 | |||||
| # See: https://mau.dev/mautrix/discord/container_registry | # See: https://mau.dev/mautrix/discord/container_registry | ||||
| matrix_mautrix_discord_docker_image: "{{ matrix_mautrix_discord_docker_image_name_prefix }}mautrix/discord:{{ matrix_mautrix_discord_version }}" | matrix_mautrix_discord_docker_image: "{{ matrix_mautrix_discord_docker_image_name_prefix }}mautrix/discord:{{ matrix_mautrix_discord_version }}" | ||||
| matrix_mautrix_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_discord_container_image_self_build else 'dock.mau.dev/' }}" | matrix_mautrix_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_discord_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -7,6 +7,7 @@ matrix_mautrix_facebook_enabled: true | |||||
| matrix_mautrix_facebook_container_image_self_build: false | matrix_mautrix_facebook_container_image_self_build: false | ||||
| matrix_mautrix_facebook_container_image_self_build_repo: "https://mau.dev/mautrix/facebook.git" | matrix_mautrix_facebook_container_image_self_build_repo: "https://mau.dev/mautrix/facebook.git" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/facebook | |||||
| matrix_mautrix_facebook_version: v0.5.1 | matrix_mautrix_facebook_version: v0.5.1 | ||||
| matrix_mautrix_facebook_docker_image: "{{ matrix_mautrix_facebook_docker_image_name_prefix }}mautrix/facebook:{{ matrix_mautrix_facebook_version }}" | matrix_mautrix_facebook_docker_image: "{{ matrix_mautrix_facebook_docker_image_name_prefix }}mautrix/facebook:{{ matrix_mautrix_facebook_version }}" | ||||
| matrix_mautrix_facebook_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_facebook_container_image_self_build else 'dock.mau.dev/' }}" | matrix_mautrix_facebook_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_facebook_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -8,7 +8,9 @@ matrix_mautrix_gmessages_container_image_self_build: false | |||||
| matrix_mautrix_gmessages_container_image_self_build_repo: "https://github.com/mautrix/gmessages.git" | matrix_mautrix_gmessages_container_image_self_build_repo: "https://github.com/mautrix/gmessages.git" | ||||
| matrix_mautrix_gmessages_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_gmessages_version == 'latest' else matrix_mautrix_gmessages_version }}" | matrix_mautrix_gmessages_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_gmessages_version == 'latest' else matrix_mautrix_gmessages_version }}" | ||||
| matrix_mautrix_gmessages_version: v0.2.0 | |||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/gmessages | |||||
| matrix_mautrix_gmessages_version: v0.2.1 | |||||
| # See: https://mau.dev/mautrix/gmessages/container_registry | # See: https://mau.dev/mautrix/gmessages/container_registry | ||||
| matrix_mautrix_gmessages_docker_image: "{{ matrix_mautrix_gmessages_docker_image_name_prefix }}mautrix/gmessages:{{ matrix_mautrix_gmessages_version }}" | matrix_mautrix_gmessages_docker_image: "{{ matrix_mautrix_gmessages_docker_image_name_prefix }}mautrix/gmessages:{{ matrix_mautrix_gmessages_version }}" | ||||
| matrix_mautrix_gmessages_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_gmessages_container_image_self_build else 'dock.mau.dev/' }}" | matrix_mautrix_gmessages_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_gmessages_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mautrix_googlechat_container_image_self_build: false | |||||
| matrix_mautrix_googlechat_container_image_self_build_repo: "https://github.com/mautrix/googlechat.git" | matrix_mautrix_googlechat_container_image_self_build_repo: "https://github.com/mautrix/googlechat.git" | ||||
| matrix_mautrix_googlechat_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_googlechat_version == 'latest' else matrix_mautrix_googlechat_version }}" | matrix_mautrix_googlechat_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_googlechat_version == 'latest' else matrix_mautrix_googlechat_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/googlechat | |||||
| matrix_mautrix_googlechat_version: v0.5.1 | matrix_mautrix_googlechat_version: v0.5.1 | ||||
| # See: https://mau.dev/mautrix/googlechat/container_registry | # See: https://mau.dev/mautrix/googlechat/container_registry | ||||
| matrix_mautrix_googlechat_docker_image: "{{ matrix_mautrix_googlechat_docker_image_name_prefix }}mautrix/googlechat:{{ matrix_mautrix_googlechat_version }}" | matrix_mautrix_googlechat_docker_image: "{{ matrix_mautrix_googlechat_docker_image_name_prefix }}mautrix/googlechat:{{ matrix_mautrix_googlechat_version }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mautrix_hangouts_container_image_self_build: false | |||||
| matrix_mautrix_hangouts_container_image_self_build_repo: "https://github.com/mautrix/hangouts.git" | matrix_mautrix_hangouts_container_image_self_build_repo: "https://github.com/mautrix/hangouts.git" | ||||
| matrix_mautrix_hangouts_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_hangouts_version == 'latest' else matrix_mautrix_googlechat_version }}" | matrix_mautrix_hangouts_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_hangouts_version == 'latest' else matrix_mautrix_googlechat_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/hangouts | |||||
| matrix_mautrix_hangouts_version: latest | matrix_mautrix_hangouts_version: latest | ||||
| # See: https://mau.dev/mautrix/hangouts/container_registry | # See: https://mau.dev/mautrix/hangouts/container_registry | ||||
| matrix_mautrix_hangouts_docker_image: "{{ matrix_mautrix_hangouts_docker_image_name_prefix }}mautrix/hangouts:{{ matrix_mautrix_hangouts_version }}" | matrix_mautrix_hangouts_docker_image: "{{ matrix_mautrix_hangouts_docker_image_name_prefix }}mautrix/hangouts:{{ matrix_mautrix_hangouts_version }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mautrix_instagram_container_image_self_build: false | |||||
| matrix_mautrix_instagram_container_image_self_build_repo: "https://github.com/mautrix/instagram.git" | matrix_mautrix_instagram_container_image_self_build_repo: "https://github.com/mautrix/instagram.git" | ||||
| matrix_mautrix_instagram_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_instagram_version == 'latest' else matrix_mautrix_instagram_version }}" | matrix_mautrix_instagram_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_instagram_version == 'latest' else matrix_mautrix_instagram_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/instagram | |||||
| matrix_mautrix_instagram_version: v0.3.1 | matrix_mautrix_instagram_version: v0.3.1 | ||||
| # See: https://mau.dev/tulir/mautrix-instagram/container_registry | # See: https://mau.dev/tulir/mautrix-instagram/container_registry | ||||
| matrix_mautrix_instagram_docker_image: "{{ matrix_mautrix_instagram_docker_image_name_prefix }}mautrix/instagram:{{ matrix_mautrix_instagram_version }}" | matrix_mautrix_instagram_docker_image: "{{ matrix_mautrix_instagram_docker_image_name_prefix }}mautrix/instagram:{{ matrix_mautrix_instagram_version }}" | ||||
| @@ -9,7 +9,9 @@ matrix_mautrix_signal_docker_repo: "https://mau.dev/mautrix/signal.git" | |||||
| matrix_mautrix_signal_docker_repo_version: "{{ 'master' if matrix_mautrix_signal_version == 'latest' else matrix_mautrix_signal_version }}" | matrix_mautrix_signal_docker_repo_version: "{{ 'master' if matrix_mautrix_signal_version == 'latest' else matrix_mautrix_signal_version }}" | ||||
| matrix_mautrix_signal_docker_src_files_path: "{{ matrix_base_data_path }}/mautrix-signal/docker-src" | matrix_mautrix_signal_docker_src_files_path: "{{ matrix_base_data_path }}/mautrix-signal/docker-src" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/signal | |||||
| matrix_mautrix_signal_version: v0.4.3 | matrix_mautrix_signal_version: v0.4.3 | ||||
| # renovate: datasource=docker depName=signald/signald | |||||
| matrix_mautrix_signal_daemon_version: 0.23.2 | matrix_mautrix_signal_daemon_version: 0.23.2 | ||||
| # See: https://mau.dev/mautrix/signal/container_registry | # See: https://mau.dev/mautrix/signal/container_registry | ||||
| matrix_mautrix_signal_docker_image: "{{ matrix_mautrix_signal_docker_image_name_prefix }}mautrix/signal:{{ matrix_mautrix_signal_version }}" | matrix_mautrix_signal_docker_image: "{{ matrix_mautrix_signal_docker_image_name_prefix }}mautrix/signal:{{ matrix_mautrix_signal_version }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mautrix_slack_container_image_self_build: false | |||||
| matrix_mautrix_slack_container_image_self_build_repo: "https://mau.dev/mautrix/slack.git" | matrix_mautrix_slack_container_image_self_build_repo: "https://mau.dev/mautrix/slack.git" | ||||
| matrix_mautrix_slack_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_slack_version == 'latest' else matrix_mautrix_slack_version }}" | matrix_mautrix_slack_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_slack_version == 'latest' else matrix_mautrix_slack_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/slack | |||||
| matrix_mautrix_slack_version: latest | matrix_mautrix_slack_version: latest | ||||
| # See: https://mau.dev/mautrix/slack/container_registry | # See: https://mau.dev/mautrix/slack/container_registry | ||||
| matrix_mautrix_slack_docker_image: "{{ matrix_mautrix_slack_docker_image_name_prefix }}mautrix/slack:{{ matrix_mautrix_slack_version }}" | matrix_mautrix_slack_docker_image: "{{ matrix_mautrix_slack_docker_image_name_prefix }}mautrix/slack:{{ matrix_mautrix_slack_version }}" | ||||
| @@ -17,6 +17,7 @@ matrix_mautrix_telegram_docker_repo: "https://mau.dev/mautrix/telegram.git" | |||||
| matrix_mautrix_telegram_docker_repo_version: "{{ 'master' if matrix_mautrix_telegram_version == 'latest' else matrix_mautrix_telegram_version }}" | matrix_mautrix_telegram_docker_repo_version: "{{ 'master' if matrix_mautrix_telegram_version == 'latest' else matrix_mautrix_telegram_version }}" | ||||
| matrix_mautrix_telegram_docker_src_files_path: "{{ matrix_base_data_path }}/mautrix-telegram/docker-src" | matrix_mautrix_telegram_docker_src_files_path: "{{ matrix_base_data_path }}/mautrix-telegram/docker-src" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/telegram | |||||
| matrix_mautrix_telegram_version: v0.14.2 | matrix_mautrix_telegram_version: v0.14.2 | ||||
| # See: https://mau.dev/mautrix/telegram/container_registry | # See: https://mau.dev/mautrix/telegram/container_registry | ||||
| matrix_mautrix_telegram_docker_image: "{{ matrix_mautrix_telegram_docker_image_name_prefix }}mautrix/telegram:{{ matrix_mautrix_telegram_version }}" | matrix_mautrix_telegram_docker_image: "{{ matrix_mautrix_telegram_docker_image_name_prefix }}mautrix/telegram:{{ matrix_mautrix_telegram_version }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mautrix_twitter_container_image_self_build: false | |||||
| matrix_mautrix_twitter_container_image_self_build_repo: "https://github.com/mautrix/twitter.git" | matrix_mautrix_twitter_container_image_self_build_repo: "https://github.com/mautrix/twitter.git" | ||||
| matrix_mautrix_twitter_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_twitter_version == 'latest' else matrix_mautrix_twitter_version }}" | matrix_mautrix_twitter_container_image_self_build_repo_version: "{{ 'master' if matrix_mautrix_twitter_version == 'latest' else matrix_mautrix_twitter_version }}" | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/twitter | |||||
| matrix_mautrix_twitter_version: v0.1.7 | matrix_mautrix_twitter_version: v0.1.7 | ||||
| # See: https://mau.dev/tulir/mautrix-twitter/container_registry | # See: https://mau.dev/tulir/mautrix-twitter/container_registry | ||||
| matrix_mautrix_twitter_docker_image: "{{ matrix_mautrix_twitter_docker_image_name_prefix }}mautrix/twitter:{{ matrix_mautrix_twitter_version }}" | matrix_mautrix_twitter_docker_image: "{{ matrix_mautrix_twitter_docker_image_name_prefix }}mautrix/twitter:{{ matrix_mautrix_twitter_version }}" | ||||
| @@ -8,7 +8,9 @@ matrix_mautrix_whatsapp_container_image_self_build: false | |||||
| matrix_mautrix_whatsapp_container_image_self_build_repo: "https://mau.dev/mautrix/whatsapp.git" | matrix_mautrix_whatsapp_container_image_self_build_repo: "https://mau.dev/mautrix/whatsapp.git" | ||||
| matrix_mautrix_whatsapp_container_image_self_build_branch: "{{ 'master' if matrix_mautrix_whatsapp_version == 'latest' else matrix_mautrix_whatsapp_version }}" | matrix_mautrix_whatsapp_container_image_self_build_branch: "{{ 'master' if matrix_mautrix_whatsapp_version == 'latest' else matrix_mautrix_whatsapp_version }}" | ||||
| matrix_mautrix_whatsapp_version: v0.10.2 | |||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/whatsapp | |||||
| matrix_mautrix_whatsapp_version: v0.10.3 | |||||
| # See: https://mau.dev/mautrix/whatsapp/container_registry | # See: https://mau.dev/mautrix/whatsapp/container_registry | ||||
| matrix_mautrix_whatsapp_docker_image: "{{ matrix_mautrix_whatsapp_docker_image_name_prefix }}mautrix/whatsapp:{{ matrix_mautrix_whatsapp_version }}" | matrix_mautrix_whatsapp_docker_image: "{{ matrix_mautrix_whatsapp_docker_image_name_prefix }}mautrix/whatsapp:{{ matrix_mautrix_whatsapp_version }}" | ||||
| matrix_mautrix_whatsapp_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_whatsapp_container_image_self_build else 'dock.mau.dev/' }}" | matrix_mautrix_whatsapp_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_whatsapp_container_image_self_build else 'dock.mau.dev/' }}" | ||||
| @@ -127,6 +127,7 @@ matrix_mautrix_imessage_registration_yaml: | | |||||
| matrix_mautrix_imessage_registration: "{{ matrix_mautrix_imessage_registration_yaml|from_yaml }}" | matrix_mautrix_imessage_registration: "{{ matrix_mautrix_imessage_registration_yaml|from_yaml }}" | ||||
| # Syncproxy-related configuration fields | # Syncproxy-related configuration fields | ||||
| # renovate: datasource=docker depName=dock.mau.dev/mautrix/syncproxy | |||||
| matrix_mautrix_wsproxy_syncproxy_version: latest | matrix_mautrix_wsproxy_syncproxy_version: latest | ||||
| # See: https://mau.dev/mautrix/wsproxy/container_registry | # See: https://mau.dev/mautrix/wsproxy/container_registry | ||||
| matrix_mautrix_wsproxy_syncproxy_docker_image: "dock.mau.dev/mautrix/syncproxy:{{ matrix_mautrix_wsproxy_syncproxy_version }}" | matrix_mautrix_wsproxy_syncproxy_docker_image: "dock.mau.dev/mautrix/syncproxy:{{ matrix_mautrix_wsproxy_syncproxy_version }}" | ||||
| @@ -14,6 +14,7 @@ matrix_mx_puppet_discord_container_image_self_build_dockerfile_path: "Dockerfile | |||||
| # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | ||||
| matrix_mx_puppet_discord_container_http_host_bind_port: '' | matrix_mx_puppet_discord_container_http_host_bind_port: '' | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/mx-puppet/discord/mx-puppet-discord | |||||
| matrix_mx_puppet_discord_version: v0.1.1 | matrix_mx_puppet_discord_version: v0.1.1 | ||||
| matrix_mx_puppet_discord_docker_image: "{{ matrix_mx_puppet_discord_docker_image_name_prefix }}mx-puppet/discord/mx-puppet-discord:{{ matrix_mx_puppet_discord_version }}" | matrix_mx_puppet_discord_docker_image: "{{ matrix_mx_puppet_discord_docker_image_name_prefix }}mx-puppet/discord/mx-puppet-discord:{{ matrix_mx_puppet_discord_version }}" | ||||
| matrix_mx_puppet_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_discord_container_image_self_build else 'registry.gitlab.com/' }}" | matrix_mx_puppet_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_discord_container_image_self_build else 'registry.gitlab.com/' }}" | ||||
| @@ -8,6 +8,7 @@ matrix_mx_puppet_instagram_container_image_self_build: false | |||||
| matrix_mx_puppet_instagram_container_image_self_build_repo: "https://github.com/Sorunome/mx-puppet-instagram.git" | matrix_mx_puppet_instagram_container_image_self_build_repo: "https://github.com/Sorunome/mx-puppet-instagram.git" | ||||
| matrix_mx_puppet_instagram_container_image_self_build_repo_version: "{{ 'master' if matrix_mx_puppet_instagram_version == 'latest' else matrix_mx_puppet_instagram_version }}" | matrix_mx_puppet_instagram_container_image_self_build_repo_version: "{{ 'master' if matrix_mx_puppet_instagram_version == 'latest' else matrix_mx_puppet_instagram_version }}" | ||||
| # renovate: datasource=docker depName=sorunome/mx-puppet-instagram | |||||
| matrix_mx_puppet_instagram_version: latest | matrix_mx_puppet_instagram_version: latest | ||||
| matrix_mx_puppet_instagram_docker_image: "{{ matrix_mx_puppet_instagram_docker_image_name_prefix }}sorunome/mx-puppet-instagram:{{ matrix_mx_puppet_instagram_version }}" | matrix_mx_puppet_instagram_docker_image: "{{ matrix_mx_puppet_instagram_docker_image_name_prefix }}sorunome/mx-puppet-instagram:{{ matrix_mx_puppet_instagram_version }}" | ||||
| matrix_mx_puppet_instagram_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_instagram_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_mx_puppet_instagram_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_instagram_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -17,6 +17,7 @@ matrix_mx_puppet_slack_container_image_self_build_dockerfile_path: "Dockerfile" | |||||
| # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | ||||
| matrix_mx_puppet_slack_container_http_host_bind_port: '' | matrix_mx_puppet_slack_container_http_host_bind_port: '' | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/mx-puppet/slack/mx-puppet-slack | |||||
| matrix_mx_puppet_slack_version: v0.1.2 | matrix_mx_puppet_slack_version: v0.1.2 | ||||
| matrix_mx_puppet_slack_docker_image: "{{ matrix_mx_puppet_slack_docker_image_name_prefix }}mx-puppet/slack/mx-puppet-slack:{{ matrix_mx_puppet_slack_version }}" | matrix_mx_puppet_slack_docker_image: "{{ matrix_mx_puppet_slack_docker_image_name_prefix }}mx-puppet/slack/mx-puppet-slack:{{ matrix_mx_puppet_slack_version }}" | ||||
| matrix_mx_puppet_slack_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_slack_container_image_self_build else 'registry.gitlab.com/' }}" | matrix_mx_puppet_slack_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_slack_container_image_self_build else 'registry.gitlab.com/' }}" | ||||
| @@ -13,6 +13,7 @@ matrix_mx_puppet_steam_container_image_self_build_repo_version: "{{ 'master' if | |||||
| # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | ||||
| matrix_mx_puppet_steam_container_http_host_bind_port: '' | matrix_mx_puppet_steam_container_http_host_bind_port: '' | ||||
| # renovate: datasource=docker depName=icewind1991/mx-puppet-steam | |||||
| matrix_mx_puppet_steam_version: latest | matrix_mx_puppet_steam_version: latest | ||||
| matrix_mx_puppet_steam_docker_image: "{{ matrix_mx_puppet_steam_docker_image_name_prefix }}icewind1991/mx-puppet-steam:{{ matrix_mx_puppet_steam_version }}" | matrix_mx_puppet_steam_docker_image: "{{ matrix_mx_puppet_steam_docker_image_name_prefix }}icewind1991/mx-puppet-steam:{{ matrix_mx_puppet_steam_version }}" | ||||
| matrix_mx_puppet_steam_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_steam_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_mx_puppet_steam_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_steam_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -13,6 +13,7 @@ matrix_mx_puppet_twitter_container_image_self_build_repo: "https://github.com/So | |||||
| # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8432"), or empty string to not expose. | ||||
| matrix_mx_puppet_twitter_container_http_host_bind_port: '' | matrix_mx_puppet_twitter_container_http_host_bind_port: '' | ||||
| # renovate: datasource=docker depName=sorunome/mx-puppet-twitter | |||||
| matrix_mx_puppet_twitter_version: latest | matrix_mx_puppet_twitter_version: latest | ||||
| matrix_mx_puppet_twitter_docker_image: "{{ matrix_mx_puppet_twitter_docker_image_name_prefix }}sorunome/mx-puppet-twitter:{{ matrix_mx_puppet_twitter_version }}" | matrix_mx_puppet_twitter_docker_image: "{{ matrix_mx_puppet_twitter_docker_image_name_prefix }}sorunome/mx-puppet-twitter:{{ matrix_mx_puppet_twitter_version }}" | ||||
| matrix_mx_puppet_twitter_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_twitter_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_mx_puppet_twitter_docker_image_name_prefix: "{{ 'localhost/' if matrix_mx_puppet_twitter_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -4,7 +4,8 @@ | |||||
| matrix_sms_bridge_enabled: true | matrix_sms_bridge_enabled: true | ||||
| matrix_sms_bridge_version: 0.5.7 | |||||
| # renovate: datasource=docker depName=folivonet/matrix-sms-bridge | |||||
| matrix_sms_bridge_version: 0.5.8 | |||||
| matrix_sms_bridge_docker_image: "{{ matrix_container_global_registry_prefix }}folivonet/matrix-sms-bridge:{{ matrix_sms_bridge_version }}" | matrix_sms_bridge_docker_image: "{{ matrix_container_global_registry_prefix }}folivonet/matrix-sms-bridge:{{ matrix_sms_bridge_version }}" | ||||
| matrix_sms_bridge_base_path: "{{ matrix_base_data_path }}/matrix-sms-bridge" | matrix_sms_bridge_base_path: "{{ matrix_base_data_path }}/matrix-sms-bridge" | ||||
| @@ -27,6 +27,7 @@ matrix_cactus_comments_tmp_directory_size_mb: 1 | |||||
| matrix_cactus_comments_container_port: 5000 | matrix_cactus_comments_container_port: 5000 | ||||
| # renovate: datasource=docker depName=cactuscomments/cactus-appservice | |||||
| matrix_cactus_comments_version: 0.9.0 | matrix_cactus_comments_version: 0.9.0 | ||||
| matrix_cactus_comments_docker_image: "{{ matrix_container_global_registry_prefix }}cactuscomments/cactus-appservice:{{ matrix_cactus_comments_version }}" | matrix_cactus_comments_docker_image: "{{ matrix_container_global_registry_prefix }}cactuscomments/cactus-appservice:{{ matrix_cactus_comments_version }}" | ||||
| matrix_cactus_comments_docker_image_force_pull: "{{ matrix_cactus_comments_docker_image.endswith(':latest') }}" | matrix_cactus_comments_docker_image_force_pull: "{{ matrix_cactus_comments_docker_image.endswith(':latest') }}" | ||||
| @@ -6,6 +6,7 @@ matrix_client_cinny_enabled: true | |||||
| matrix_client_cinny_container_image_self_build: false | matrix_client_cinny_container_image_self_build: false | ||||
| matrix_client_cinny_container_image_self_build_repo: "https://github.com/ajbura/cinny.git" | matrix_client_cinny_container_image_self_build_repo: "https://github.com/ajbura/cinny.git" | ||||
| # renovate: datasource=docker depName=ajbura/cinny | |||||
| matrix_client_cinny_version: v2.2.6 | matrix_client_cinny_version: v2.2.6 | ||||
| matrix_client_cinny_docker_image: "{{ matrix_client_cinny_docker_image_name_prefix }}ajbura/cinny:{{ matrix_client_cinny_version }}" | matrix_client_cinny_docker_image: "{{ matrix_client_cinny_docker_image_name_prefix }}ajbura/cinny:{{ matrix_client_cinny_version }}" | ||||
| matrix_client_cinny_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_cinny_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_client_cinny_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_cinny_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -10,7 +10,9 @@ matrix_client_element_container_image_self_build_repo: "https://github.com/vecto | |||||
| # - https://github.com/vector-im/element-web/issues/19544 | # - https://github.com/vector-im/element-web/issues/19544 | ||||
| matrix_client_element_container_image_self_build_low_memory_system_patch_enabled: "{{ ansible_memtotal_mb < 4096 }}" | matrix_client_element_container_image_self_build_low_memory_system_patch_enabled: "{{ ansible_memtotal_mb < 4096 }}" | ||||
| # renovate: datasource=docker depName=vectorim/element-web | |||||
| matrix_client_element_version: v1.11.46 | matrix_client_element_version: v1.11.46 | ||||
| matrix_client_element_docker_image: "{{ matrix_client_element_docker_image_name_prefix }}vectorim/element-web:{{ matrix_client_element_version }}" | matrix_client_element_docker_image: "{{ matrix_client_element_docker_image_name_prefix }}vectorim/element-web:{{ matrix_client_element_version }}" | ||||
| matrix_client_element_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_element_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_client_element_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_element_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| matrix_client_element_docker_image_force_pull: "{{ matrix_client_element_docker_image.endswith(':latest') }}" | matrix_client_element_docker_image_force_pull: "{{ matrix_client_element_docker_image.endswith(':latest') }}" | ||||
| @@ -6,6 +6,7 @@ matrix_client_hydrogen_enabled: true | |||||
| matrix_client_hydrogen_container_image_self_build: false | matrix_client_hydrogen_container_image_self_build: false | ||||
| matrix_client_hydrogen_container_image_self_build_repo: "https://github.com/vector-im/hydrogen-web.git" | matrix_client_hydrogen_container_image_self_build_repo: "https://github.com/vector-im/hydrogen-web.git" | ||||
| # renovate: datasource=docker depName=ghcr.io/vector-im/hydrogen-web | |||||
| matrix_client_hydrogen_version: v0.4.1 | matrix_client_hydrogen_version: v0.4.1 | ||||
| matrix_client_hydrogen_docker_image: "{{ matrix_client_hydrogen_docker_image_name_prefix }}vector-im/hydrogen-web:{{ matrix_client_hydrogen_version }}" | matrix_client_hydrogen_docker_image: "{{ matrix_client_hydrogen_docker_image_name_prefix }}vector-im/hydrogen-web:{{ matrix_client_hydrogen_version }}" | ||||
| matrix_client_hydrogen_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_hydrogen_container_image_self_build else 'ghcr.io/' }}" | matrix_client_hydrogen_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_hydrogen_container_image_self_build else 'ghcr.io/' }}" | ||||
| @@ -5,6 +5,7 @@ matrix_client_schildichat_enabled: true | |||||
| matrix_client_schildichat_container_image_self_build: false | matrix_client_schildichat_container_image_self_build: false | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/etke.cc/schildichat-web | |||||
| matrix_client_schildichat_version: v1.11.30-sc.2 | matrix_client_schildichat_version: v1.11.30-sc.2 | ||||
| matrix_client_schildichat_docker_image: "{{ matrix_client_schildichat_docker_image_name_prefix }}etke.cc/schildichat-web:{{ matrix_client_schildichat_version }}" | matrix_client_schildichat_docker_image: "{{ matrix_client_schildichat_docker_image_name_prefix }}etke.cc/schildichat-web:{{ matrix_client_schildichat_version }}" | ||||
| matrix_client_schildichat_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_schildichat_container_image_self_build else 'registry.gitlab.com/' }}" | matrix_client_schildichat_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_schildichat_container_image_self_build else 'registry.gitlab.com/' }}" | ||||
| @@ -6,6 +6,7 @@ matrix_conduit_enabled: true | |||||
| matrix_conduit_docker_image: "{{ matrix_conduit_docker_image_name_prefix }}matrixconduit/matrix-conduit:{{ matrix_conduit_docker_image_tag }}" | matrix_conduit_docker_image: "{{ matrix_conduit_docker_image_name_prefix }}matrixconduit/matrix-conduit:{{ matrix_conduit_docker_image_tag }}" | ||||
| matrix_conduit_docker_image_name_prefix: "docker.io/" | matrix_conduit_docker_image_name_prefix: "docker.io/" | ||||
| # renovate: datasource=docker depName=matrixconduit/matrix-conduit | |||||
| matrix_conduit_docker_image_tag: "v0.6.0" | matrix_conduit_docker_image_tag: "v0.6.0" | ||||
| matrix_conduit_docker_image_force_pull: "{{ matrix_conduit_docker_image.endswith(':latest') }}" | matrix_conduit_docker_image_force_pull: "{{ matrix_conduit_docker_image.endswith(':latest') }}" | ||||
| @@ -23,7 +23,8 @@ matrix_corporal_container_extra_arguments: [] | |||||
| # List of systemd services that matrix-corporal.service depends on | # List of systemd services that matrix-corporal.service depends on | ||||
| matrix_corporal_systemd_required_services_list: ['docker.service'] | matrix_corporal_systemd_required_services_list: ['docker.service'] | ||||
| matrix_corporal_version: 2.5.2 | |||||
| # renovate: datasource=docker depName=devture/matrix-corporal | |||||
| matrix_corporal_version: 2.6.0 | |||||
| matrix_corporal_docker_image: "{{ matrix_corporal_docker_image_name_prefix }}devture/matrix-corporal:{{ matrix_corporal_docker_image_tag }}" | matrix_corporal_docker_image: "{{ matrix_corporal_docker_image_name_prefix }}devture/matrix-corporal:{{ matrix_corporal_docker_image_tag }}" | ||||
| matrix_corporal_docker_image_name_prefix: "{{ 'localhost/' if matrix_corporal_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_corporal_docker_image_name_prefix: "{{ 'localhost/' if matrix_corporal_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| matrix_corporal_docker_image_tag: "{{ matrix_corporal_version }}" # for backward-compatibility | matrix_corporal_docker_image_tag: "{{ matrix_corporal_version }}" # for backward-compatibility | ||||
| @@ -8,6 +8,7 @@ matrix_coturn_container_image_self_build_repo: "https://github.com/coturn/coturn | |||||
| matrix_coturn_container_image_self_build_repo_version: "docker/{{ matrix_coturn_version }}" | matrix_coturn_container_image_self_build_repo_version: "docker/{{ matrix_coturn_version }}" | ||||
| matrix_coturn_container_image_self_build_repo_dockerfile_path: "docker/coturn/alpine/Dockerfile" | matrix_coturn_container_image_self_build_repo_dockerfile_path: "docker/coturn/alpine/Dockerfile" | ||||
| # renovate: datasource=docker depName=coturn/coturn | |||||
| matrix_coturn_version: 4.6.2-r5 | matrix_coturn_version: 4.6.2-r5 | ||||
| matrix_coturn_docker_image: "{{ matrix_coturn_docker_image_name_prefix }}coturn/coturn:{{ matrix_coturn_version }}-alpine" | matrix_coturn_docker_image: "{{ matrix_coturn_docker_image_name_prefix }}coturn/coturn:{{ matrix_coturn_version }}-alpine" | ||||
| matrix_coturn_docker_image_name_prefix: "{{ 'localhost/' if matrix_coturn_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_coturn_docker_image_name_prefix: "{{ 'localhost/' if matrix_coturn_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -10,6 +10,7 @@ matrix_dendrite_container_image_self_build_repo: "https://github.com/matrix-org/ | |||||
| matrix_dendrite_docker_image_path: "matrixdotorg/dendrite-monolith" | matrix_dendrite_docker_image_path: "matrixdotorg/dendrite-monolith" | ||||
| matrix_dendrite_docker_image: "{{ matrix_dendrite_docker_image_name_prefix }}{{ matrix_dendrite_docker_image_path }}:{{ matrix_dendrite_docker_image_tag }}" | matrix_dendrite_docker_image: "{{ matrix_dendrite_docker_image_name_prefix }}{{ matrix_dendrite_docker_image_path }}:{{ matrix_dendrite_docker_image_tag }}" | ||||
| matrix_dendrite_docker_image_name_prefix: "{{ 'localhost/' if matrix_dendrite_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_dendrite_docker_image_name_prefix: "{{ 'localhost/' if matrix_dendrite_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| # renovate: datasource=docker depName=matrixdotorg/dendrite-monolith | |||||
| matrix_dendrite_docker_image_tag: "v0.13.3" | matrix_dendrite_docker_image_tag: "v0.13.3" | ||||
| matrix_dendrite_docker_image_force_pull: "{{ matrix_dendrite_docker_image.endswith(':latest') }}" | matrix_dendrite_docker_image_force_pull: "{{ matrix_dendrite_docker_image.endswith(':latest') }}" | ||||
| @@ -29,6 +29,7 @@ matrix_dimension_container_image_self_build_branch: master | |||||
| matrix_dimension_base_path: "{{ matrix_base_data_path }}/dimension" | matrix_dimension_base_path: "{{ matrix_base_data_path }}/dimension" | ||||
| matrix_dimension_docker_src_files_path: "{{ matrix_base_data_path }}/docker-src/dimension" | matrix_dimension_docker_src_files_path: "{{ matrix_base_data_path }}/docker-src/dimension" | ||||
| # renovate: datasource=docker depName=turt2live/matrix-dimension | |||||
| matrix_dimension_version: latest | matrix_dimension_version: latest | ||||
| matrix_dimension_docker_image: "{{ matrix_dimension_docker_image_name_prefix }}turt2live/matrix-dimension:{{ matrix_dimension_version }}" | matrix_dimension_docker_image: "{{ matrix_dimension_docker_image_name_prefix }}turt2live/matrix-dimension:{{ matrix_dimension_version }}" | ||||
| matrix_dimension_docker_image_name_prefix: "{{ 'localhost/' if matrix_dimension_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_dimension_docker_image_name_prefix: "{{ 'localhost/' if matrix_dimension_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -7,6 +7,7 @@ matrix_dynamic_dns_enabled: true | |||||
| # The dynamic dns daemon interval | # The dynamic dns daemon interval | ||||
| matrix_dynamic_dns_daemon_interval: '300' | matrix_dynamic_dns_daemon_interval: '300' | ||||
| # renovate: datasource=docker depName=linuxserver/ddclient | |||||
| matrix_dynamic_dns_version: v3.10.0-ls136 | matrix_dynamic_dns_version: v3.10.0-ls136 | ||||
| # The docker container to use when in mode | # The docker container to use when in mode | ||||
| @@ -11,6 +11,7 @@ matrix_email2matrix_container_image_self_build: false | |||||
| matrix_email2matrix_container_image_self_build_repo: "https://github.com/devture/email2matrix.git" | matrix_email2matrix_container_image_self_build_repo: "https://github.com/devture/email2matrix.git" | ||||
| matrix_email2matrix_container_image_self_build_branch: "{{ matrix_email2matrix_version }}" | matrix_email2matrix_container_image_self_build_branch: "{{ matrix_email2matrix_version }}" | ||||
| # renovate: datasource=docker depName=devture/email2matrix | |||||
| matrix_email2matrix_version: 1.1.0 | matrix_email2matrix_version: 1.1.0 | ||||
| matrix_email2matrix_docker_image_prefix: "{{ 'localhost/' if matrix_email2matrix_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_email2matrix_docker_image_prefix: "{{ 'localhost/' if matrix_email2matrix_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| matrix_email2matrix_docker_image: "{{ matrix_email2matrix_docker_image_prefix }}devture/email2matrix:{{ matrix_email2matrix_version }}" | matrix_email2matrix_docker_image: "{{ matrix_email2matrix_docker_image_prefix }}devture/email2matrix:{{ matrix_email2matrix_version }}" | ||||
| @@ -8,6 +8,7 @@ matrix_ma1sd_container_image_self_build: false | |||||
| matrix_ma1sd_container_image_self_build_repo: "https://github.com/ma1uta/ma1sd.git" | matrix_ma1sd_container_image_self_build_repo: "https://github.com/ma1uta/ma1sd.git" | ||||
| matrix_ma1sd_container_image_self_build_branch: "{{ matrix_ma1sd_version }}" | matrix_ma1sd_container_image_self_build_branch: "{{ matrix_ma1sd_version }}" | ||||
| # renovate: datasource=docker depName=ma1uta/ma1sd | |||||
| matrix_ma1sd_version: "2.5.0" | matrix_ma1sd_version: "2.5.0" | ||||
| matrix_ma1sd_docker_image: "{{ matrix_ma1sd_docker_image_name_prefix }}ma1uta/ma1sd:{{ matrix_ma1sd_version }}" | matrix_ma1sd_docker_image: "{{ matrix_ma1sd_docker_image_name_prefix }}ma1uta/ma1sd:{{ matrix_ma1sd_version }}" | ||||
| @@ -10,7 +10,8 @@ matrix_mailer_container_image_self_build_repository_url: "https://github.com/dev | |||||
| matrix_mailer_container_image_self_build_src_files_path: "{{ matrix_mailer_base_path }}/docker-src" | matrix_mailer_container_image_self_build_src_files_path: "{{ matrix_mailer_base_path }}/docker-src" | ||||
| matrix_mailer_container_image_self_build_version: "{{ matrix_mailer_docker_image.split(':')[1] }}" | matrix_mailer_container_image_self_build_version: "{{ matrix_mailer_docker_image.split(':')[1] }}" | ||||
| matrix_mailer_version: 4.96-r1-0 | |||||
| # renovate: datasource=docker depName=devture/exim-relay versioning=semver | |||||
| matrix_mailer_version: 4.96.2-r0-0 | |||||
| matrix_mailer_docker_image: "{{ matrix_mailer_docker_image_name_prefix }}devture/exim-relay:{{ matrix_mailer_version }}" | matrix_mailer_docker_image: "{{ matrix_mailer_docker_image_name_prefix }}devture/exim-relay:{{ matrix_mailer_version }}" | ||||
| matrix_mailer_docker_image_name_prefix: "{{ 'localhost/' if matrix_mailer_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_mailer_docker_image_name_prefix: "{{ 'localhost/' if matrix_mailer_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| matrix_mailer_docker_image_force_pull: "{{ matrix_mailer_docker_image.endswith(':latest') }}" | matrix_mailer_docker_image_force_pull: "{{ matrix_mailer_docker_image.endswith(':latest') }}" | ||||
| @@ -18,6 +18,7 @@ matrix_media_repo_container_image_self_build_repo: "https://github.com/turt2live | |||||
| matrix_media_repo_docker_image_path: "turt2live/matrix-media-repo" | matrix_media_repo_docker_image_path: "turt2live/matrix-media-repo" | ||||
| matrix_media_repo_docker_image: "{{ matrix_media_repo_docker_image_name_prefix }}{{ matrix_media_repo_docker_image_path }}:{{ matrix_media_repo_docker_image_tag }}" | matrix_media_repo_docker_image: "{{ matrix_media_repo_docker_image_name_prefix }}{{ matrix_media_repo_docker_image_path }}:{{ matrix_media_repo_docker_image_tag }}" | ||||
| matrix_media_repo_docker_image_name_prefix: "{{ 'localhost/' if matrix_media_repo_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_media_repo_docker_image_name_prefix: "{{ 'localhost/' if matrix_media_repo_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| # renovate: datasource=docker depName=turt2live/matrix-media-repo | |||||
| matrix_media_repo_docker_image_tag: "v1.2.13" | matrix_media_repo_docker_image_tag: "v1.2.13" | ||||
| matrix_media_repo_docker_image_force_pull: "{{ matrix_media_repo_docker_image.endswith(':latest') }}" | matrix_media_repo_docker_image_force_pull: "{{ matrix_media_repo_docker_image.endswith(':latest') }}" | ||||
| @@ -1,6 +1,7 @@ | |||||
| --- | --- | ||||
| # Project source code URL: https://github.com/nginx/nginx | # Project source code URL: https://github.com/nginx/nginx | ||||
| matrix_nginx_proxy_enabled: true | matrix_nginx_proxy_enabled: true | ||||
| # renovate: datasource=docker depName=nginx | |||||
| matrix_nginx_proxy_version: 1.25.2-alpine | matrix_nginx_proxy_version: 1.25.2-alpine | ||||
| # We use an official nginx image, which we fix-up to run unprivileged. | # We use an official nginx image, which we fix-up to run unprivileged. | ||||
| @@ -307,6 +308,7 @@ matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_path: "{{ matrix_nginx_proxy_ | |||||
| # To avoid using this, use `matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_raw_content` instead of supplying username/password. | # To avoid using this, use `matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_raw_content` instead of supplying username/password. | ||||
| # Learn more in: `roles/custom/matrix-nginx-proxy/tasks/nginx-proxy/setup_metrics_auth.yml`. | # Learn more in: `roles/custom/matrix-nginx-proxy/tasks/nginx-proxy/setup_metrics_auth.yml`. | ||||
| matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image: "{{ matrix_container_global_registry_prefix }}httpd:{{ matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag }}" | matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image: "{{ matrix_container_global_registry_prefix }}httpd:{{ matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag }}" | ||||
| # renovate: datasource=docker depName=httpd | |||||
| matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag: "2.4.54-alpine3.16" | matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag: "2.4.54-alpine3.16" | ||||
| matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_force_pull: "{{ matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag.endswith(':latest') }}" | matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_force_pull: "{{ matrix_nginx_proxy_proxy_matrix_metrics_basic_auth_apache_container_image_tag.endswith(':latest') }}" | ||||
| @@ -3,6 +3,7 @@ | |||||
| # See: https://github.com/martin-helmich/prometheus-nginxlog-exporter/ | # See: https://github.com/martin-helmich/prometheus-nginxlog-exporter/ | ||||
| matrix_prometheus_nginxlog_exporter_enabled: true | matrix_prometheus_nginxlog_exporter_enabled: true | ||||
| # renovate: datasource=docker depName=ghcr.io/martin-helmich/prometheus-nginxlog-exporter/exporter | |||||
| matrix_prometheus_nginxlog_exporter_version: v1.10.0 | matrix_prometheus_nginxlog_exporter_version: v1.10.0 | ||||
| matrix_prometheus_nginxlog_exporter_container_hostname: 'matrix-prometheus-nginxlog-exporter' | matrix_prometheus_nginxlog_exporter_container_hostname: 'matrix-prometheus-nginxlog-exporter' | ||||
| @@ -16,7 +16,8 @@ matrix_rageshake_path_prefix: / | |||||
| # There are no stable container image tags yet. | # There are no stable container image tags yet. | ||||
| # See: https://github.com/matrix-org/rageshake/issues/69 | # See: https://github.com/matrix-org/rageshake/issues/69 | ||||
| matrix_rageshake_version: 1.9.0 | |||||
| # renovate: datasource=docker depName=ghcr.io/matrix-org/rageshake | |||||
| matrix_rageshake_version: 1.11.0 | |||||
| matrix_rageshake_base_path: "{{ matrix_base_data_path }}/rageshake" | matrix_rageshake_base_path: "{{ matrix_base_data_path }}/rageshake" | ||||
| matrix_rageshake_config_path: "{{ matrix_rageshake_base_path }}/config" | matrix_rageshake_config_path: "{{ matrix_rageshake_base_path }}/config" | ||||
| @@ -18,6 +18,7 @@ matrix_registration_config_path: "{{ matrix_registration_base_path }}/config" | |||||
| matrix_registration_data_path: "{{ matrix_registration_base_path }}/data" | matrix_registration_data_path: "{{ matrix_registration_base_path }}/data" | ||||
| matrix_registration_docker_src_files_path: "{{ matrix_registration_base_path }}/docker-src" | matrix_registration_docker_src_files_path: "{{ matrix_registration_base_path }}/docker-src" | ||||
| # renovate: datasource=docker depName=zeratax/matrix-registration | |||||
| matrix_registration_version: "v0.7.2" | matrix_registration_version: "v0.7.2" | ||||
| matrix_registration_docker_image: "{{ matrix_registration_docker_image_name_prefix }}zeratax/matrix-registration:{{ matrix_registration_version }}" | matrix_registration_docker_image: "{{ matrix_registration_docker_image_name_prefix }}zeratax/matrix-registration:{{ matrix_registration_version }}" | ||||
| @@ -5,6 +5,7 @@ | |||||
| matrix_sliding_sync_enabled: true | matrix_sliding_sync_enabled: true | ||||
| # renovate: datasource=docker depName=ghcr.io/matrix-org/sliding-sync | |||||
| matrix_sliding_sync_version: v0.99.11 | matrix_sliding_sync_version: v0.99.11 | ||||
| matrix_sliding_sync_scheme: https | matrix_sliding_sync_scheme: https | ||||
| @@ -12,6 +12,7 @@ matrix_sygnal_hostname: '' | |||||
| # This value must either be `/` or not end with a slash (e.g. `/sygnal`). | # This value must either be `/` or not end with a slash (e.g. `/sygnal`). | ||||
| matrix_sygnal_path_prefix: / | matrix_sygnal_path_prefix: / | ||||
| # renovate: datasource=docker depName=matrixdotorg/sygnal | |||||
| matrix_sygnal_version: v0.12.0 | matrix_sygnal_version: v0.12.0 | ||||
| matrix_sygnal_base_path: "{{ matrix_base_data_path }}/sygnal" | matrix_sygnal_base_path: "{{ matrix_base_data_path }}/sygnal" | ||||
| @@ -14,6 +14,7 @@ matrix_synapse_admin_nginx_proxy_integration_enabled: false | |||||
| matrix_synapse_admin_container_image_self_build: false | matrix_synapse_admin_container_image_self_build: false | ||||
| matrix_synapse_admin_container_image_self_build_repo: "https://github.com/Awesome-Technologies/synapse-admin.git" | matrix_synapse_admin_container_image_self_build_repo: "https://github.com/Awesome-Technologies/synapse-admin.git" | ||||
| # renovate: datasource=docker depName=awesometechnologies/synapse-admin | |||||
| matrix_synapse_admin_version: 0.8.7 | matrix_synapse_admin_version: 0.8.7 | ||||
| matrix_synapse_admin_docker_image: "{{ matrix_synapse_admin_docker_image_name_prefix }}awesometechnologies/synapse-admin:{{ matrix_synapse_admin_version }}" | matrix_synapse_admin_docker_image: "{{ matrix_synapse_admin_docker_image_name_prefix }}awesometechnologies/synapse-admin:{{ matrix_synapse_admin_version }}" | ||||
| matrix_synapse_admin_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_admin_container_image_self_build else matrix_container_global_registry_prefix }}" | matrix_synapse_admin_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_admin_container_image_self_build else matrix_container_global_registry_prefix }}" | ||||
| @@ -5,6 +5,7 @@ | |||||
| matrix_synapse_auto_compressor_enabled: true | matrix_synapse_auto_compressor_enabled: true | ||||
| # renovate: datasource=docker depName=registry.gitlab.com/etke.cc/rust-synapse-compress-state | |||||
| matrix_synapse_auto_compressor_version: v0.1.3 | matrix_synapse_auto_compressor_version: v0.1.3 | ||||
| matrix_synapse_auto_compressor_base_path: "{{ matrix_base_data_path }}/synapse-auto-compressor" | matrix_synapse_auto_compressor_base_path: "{{ matrix_base_data_path }}/synapse-auto-compressor" | ||||
| @@ -25,6 +25,7 @@ | |||||
| matrix_synapse_reverse_proxy_companion_enabled: true | matrix_synapse_reverse_proxy_companion_enabled: true | ||||
| # renovate: datasource=docker depName=nginx | |||||
| matrix_synapse_reverse_proxy_companion_version: 1.25.2-alpine | matrix_synapse_reverse_proxy_companion_version: 1.25.2-alpine | ||||
| matrix_synapse_reverse_proxy_companion_base_path: "{{ matrix_synapse_base_path }}/reverse-proxy-companion" | matrix_synapse_reverse_proxy_companion_base_path: "{{ matrix_synapse_base_path }}/reverse-proxy-companion" | ||||
| @@ -4,6 +4,7 @@ | |||||
| matrix_synapse_enabled: true | matrix_synapse_enabled: true | ||||
| # renovate: datasource=docker depName=matrixdotorg/synapse | |||||
| matrix_synapse_version: v1.94.0 | matrix_synapse_version: v1.94.0 | ||||
| matrix_synapse_username: '' | matrix_synapse_username: '' | ||||
| @@ -2116,8 +2116,7 @@ saml2_config: | |||||
| # attribute_requirements: | # attribute_requirements: | ||||
| # - attribute: userGroup | # - attribute: userGroup | ||||
| # value: "synapseUsers" | # value: "synapseUsers" | ||||
| oidc_providers: | |||||
| {{ matrix_synapse_oidc_providers|to_nice_yaml(indent=2, width=999999) }} | |||||
| oidc_providers: {{ matrix_synapse_oidc_providers }} | |||||
| {% endif %} | {% endif %} | ||||
| @@ -6,7 +6,8 @@ matrix_user_verification_service_ansible_name: "Matrix User Verification Service | |||||
| matrix_user_verification_service_enabled: true | matrix_user_verification_service_enabled: true | ||||
| # Fix version tag | # Fix version tag | ||||
| matrix_user_verification_service_version: "v2.0.0" | |||||
| # renovate: datasource=docker depName=matrixdotorg/matrix-user-verification-service | |||||
| matrix_user_verification_service_version: "v3.0.0" | |||||
| # Paths | # Paths | ||||
| matrix_user_verification_service_base_path: "{{ matrix_base_data_path }}/user-verification-service" | matrix_user_verification_service_base_path: "{{ matrix_base_data_path }}/user-verification-service" | ||||