Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

211 lignes
19 KiB

  1. # SPDX-FileCopyrightText: 2019 - 2024 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2024 Charles Wright
  3. # SPDX-FileCopyrightText: 2024 MDAD project contributors
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - name: (Deprecation) Catch and report renamed settings
  8. ansible.builtin.fail:
  9. msg: >-
  10. Your configuration contains a variable, which now has a different name.
  11. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  12. when: "lookup('ansible.builtin.varnames', ('^' + item.old + '$'), wantlist=True) | length > 0"
  13. with_items:
  14. - {'old': 'matrix_synapse_email_riot_base_url', 'new': '<superseded by client_base_url>'}
  15. - {'old': 'matrix_synapse_container_expose_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  16. - {'old': 'matrix_synapse_no_tls', 'new': '<removed>'}
  17. - {'old': 'matrix_enable_room_list_search', 'new': 'matrix_synapse_enable_room_list_search'}
  18. - {'old': 'matrix_alias_creation_rules', 'new': 'matrix_synapse_alias_creation_rules'}
  19. - {'old': 'matrix_room_list_publication_rules', 'new': 'matrix_synapse_room_list_publication_rules'}
  20. - {'old': 'matrix_synapse_rc_messages_per_second', 'new': '<per_second subkey of matrix_synapse_rc_message>'}
  21. - {'old': 'matrix_synapse_rc_message_burst_count', 'new': '<burst_count subkey of matrix_synapse_rc_message>'}
  22. - {'old': 'matrix_synapse_federation_rc_window_size', 'new': '<window_size subkey of matrix_synapse_rc_federation>'}
  23. - {'old': 'matrix_synapse_federation_rc_sleep_limit', 'new': '<sleep_limit subkey of matrix_synapse_rc_federation>'}
  24. - {'old': 'matrix_synapse_federation_rc_sleep_delay', 'new': '<sleep_delay subkey of matrix_synapse_rc_federation>'}
  25. - {'old': 'matrix_synapse_federation_rc_reject_limit', 'new': '<reject_limit subkey of matrix_synapse_rc_federation>'}
  26. - {'old': 'matrix_synapse_federation_rc_concurrent', 'new': '<concurrent subkey of matrix_synapse_rc_federation>'}
  27. - {'old': 'matrix_synapse_container_expose_client_api_port', 'new': '<superseded by matrix_synapse_container_client_api_host_bind_port>'}
  28. - {'old': 'matrix_synapse_container_expose_federation_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  29. - {'old': 'matrix_synapse_container_expose_metrics_port', 'new': '<superseded by matrix_synapse_container_metrics_api_host_bind_port>'}
  30. - {'old': 'matrix_synapse_cache_factor', 'new': 'matrix_synapse_caches_global_factor'}
  31. - {'old': 'matrix_synapse_trusted_third_party_id_servers', 'new': '<deprecated in Synapse v0.99.4 and removed in Synapse v1.19.0>'}
  32. - {'old': 'matrix_synapse_use_presence', 'new': 'matrix_synapse_presence_enabled'}
  33. - {'old': 'matrix_synapse_version_arm64', 'new': '<superseded by matrix_synapse_version - see https://github.com/matrix-org/synapse/pull/11810>'}
  34. - {'old': 'matrix_synapse_enable_group_creation', 'new': '<removed in Synapse v1.61.0 - use the new Spaces feature instead>'}
  35. - {'old': 'matrix_synapse_account_threepid_delegates_email', 'new': '<removed in Synapse v1.66.0 - make sure to configure email settings for Synapse - see https://matrix-org.github.io/synapse/v1.66/upgrade.html#delegation-of-email-validation-no-longer-supported>'}
  36. - {'old': 'matrix_synapse_workers_frontend_proxy_workers_count', 'new': '<removed in favor of generic workers - see https://github.com/matrix-org/synapse/pull/13645>'}
  37. - {'old': 'matrix_synapse_workers_frontend_proxy_workers_port_range_start', 'new': '<removed in favor of generic workers - see https://github.com/matrix-org/synapse/pull/13645>'}
  38. - {'old': 'matrix_synapse_workers_frontend_proxy_workers_metrics_range_start', 'new': '<removed in favor of generic workers - see https://github.com/matrix-org/synapse/pull/13645>'}
  39. - {'old': 'matrix_synapse_ext_s3_storage_provider_path', 'new': 'matrix_synapse_ext_s3_storage_provider_base_path'}
  40. - {'old': 'matrix_synapse_send_federation', 'new': '<unnecessary - Synapse relies on federation_sender_instances now>'}
  41. - {'old': 'matrix_synapse_start_pushers', 'new': '<unnecessary - Synapse relies on pusher_instances now>'}
  42. - {'old': 'matrix_synapse_spam_checker', 'new': '<superseded by matrix_synapse_modules>'}
  43. - {'old': 'matrix_synapse_caches_autotuning_max_cache_memory_usage', 'new': 'matrix_synapse_cache_autotuning_max_cache_memory_usage'}
  44. - {'old': 'matrix_synapse_caches_autotuning_target_cache_memory_usage', 'new': 'matrix_synapse_cache_autotuning_target_cache_memory_usage'}
  45. - {'old': 'matrix_synapse_caches_autotuning_min_cache_ttl', 'new': 'matrix_synapse_cache_autotuning_min_cache_ttl'}
  46. - {'old': 'matrix_synapse_memtotal_kb', 'new': '<superseded by matrix_synapse_cache_size_calculations_memtotal_bytes>'}
  47. - {'old': 'matrix_synapse_docker_image_name_prefix', 'new': 'matrix_synapse_container_image_registry_prefix'}
  48. - {'old': 'matrix_s3_goofys_docker_image_name_prefix', 'new': 'matrix_s3_goofys_docker_image_registry_prefix'}
  49. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_name_prefix', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_registry_prefix'}
  50. - {'old': 'matrix_synapse_docker_image', 'new': 'matrix_synapse_container_image'}
  51. - {'old': 'matrix_synapse_docker_image_name', 'new': 'matrix_synapse_container_image_name'}
  52. - {'old': 'matrix_synapse_docker_image_tag', 'new': 'matrix_synapse_container_image_tag'}
  53. - {'old': 'matrix_synapse_docker_image_force_pull', 'new': 'matrix_synapse_container_image_force_pull'}
  54. - {'old': 'matrix_synapse_docker_image_registry_prefix', 'new': 'matrix_synapse_container_image_registry_prefix'}
  55. - {'old': 'matrix_synapse_docker_image_registry_prefix_upstream', 'new': 'matrix_synapse_container_image_registry_prefix_upstream'}
  56. - {'old': 'matrix_synapse_docker_image_registry_prefix_upstream_default', 'new': 'matrix_synapse_container_image_registry_prefix_upstream_default'}
  57. - {'old': 'matrix_synapse_docker_src_files_path', 'new': 'matrix_synapse_container_src_files_path'}
  58. - {'old': 'matrix_synapse_docker_image_customized', 'new': 'matrix_synapse_container_image_customized'}
  59. - {'old': 'matrix_synapse_docker_image_customized_build_nocache', 'new': 'matrix_synapse_container_image_customized_build_nocache'}
  60. - {'old': 'matrix_synapse_docker_image_customized_force_source', 'new': 'matrix_synapse_container_image_customized_force_source'}
  61. - {'old': 'matrix_synapse_docker_image_final', 'new': 'matrix_synapse_container_image_final'}
  62. - {'old': 'matrix_synapse_customized_docker_src_files_path', 'new': 'matrix_synapse_customized_container_src_files_path'}
  63. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image'}
  64. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_version', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_version'}
  65. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_force_pull', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_force_pull'}
  66. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_registry_prefix', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_registry_prefix'}
  67. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_registry_prefix_upstream', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_registry_prefix_upstream'}
  68. - {'old': 'matrix_synapse_rust_synapse_compress_state_docker_image_registry_prefix_upstream_default', 'new': 'matrix_synapse_rust_synapse_compress_state_container_image_registry_prefix_upstream_default'}
  69. - {'old': 'matrix_synapse_experimental_features_msc3202_device_masquerading_enabled', 'new': '<removed - this feature is enabled by default now'}
  70. - {'old': 'matrix_synapse_experimental_features_msc3861_enabled', 'new': 'matrix_synapse_matrix_authentication_service_enabled'}
  71. - {'old': 'matrix_synapse_experimental_features_msc3861_issuer', 'new': '<superseded by matrix_synapse_matrix_authentication_service_endpoint>'}
  72. - {'old': 'matrix_synapse_experimental_features_msc3861_client_id', 'new': '<removed>'}
  73. - {'old': 'matrix_synapse_experimental_features_msc3861_client_auth_method', 'new': '<removed>'}
  74. - {'old': 'matrix_synapse_experimental_features_msc3861_client_secret', 'new': '<removed>'}
  75. - {'old': 'matrix_synapse_experimental_features_msc3861_admin_token', 'new': '<removed>'}
  76. - {'old': 'matrix_synapse_experimental_features_msc3861_account_management_url', 'new': '<removed>'}
  77. - {'old': 'matrix_synapse_experimental_features_msc4133_enabled', 'new': '<removed - this feature is enabled by default now>'}
  78. - {'old': 'matrix_synapse_container_image_customizations_s3_storage_provider_installation_old_boto_workaround_enabled', 'new': '<removed; see https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/4637>'}
  79. - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml
  80. ansible.builtin.fail:
  81. msg: >-
  82. Your matrix_synapse_configuration_extension_yaml configuration contains a variable, which now has a different name.
  83. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  84. when: "item.old in matrix_synapse_configuration_extension"
  85. with_items:
  86. - {'old': 'federation_ip_range_blacklist', 'new': 'ip_range_blacklist'}
  87. - name: Fail if required Synapse settings not defined
  88. ansible.builtin.fail:
  89. msg: >-
  90. You need to define a required configuration setting (`{{ item.name }}`).
  91. when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
  92. with_items:
  93. - {'name': 'matrix_synapse_username', when: true}
  94. - {'name': 'matrix_synapse_uid', when: true}
  95. - {'name': 'matrix_synapse_gid', when: true}
  96. - {'name': 'matrix_synapse_container_network', when: true}
  97. - {'name': 'matrix_synapse_macaroon_secret_key', when: true}
  98. - {'name': 'matrix_synapse_database_host', when: true}
  99. - {'name': 'matrix_synapse_database_user', when: true}
  100. - {'name': 'matrix_synapse_database_password', when: true}
  101. - {'name': 'matrix_synapse_database_database', when: true}
  102. - {'name': 'matrix_synapse_container_labels_public_client_root_traefik_hostname', when: "{{ matrix_synapse_container_labels_public_client_root_enabled }}"}
  103. - {'name': 'matrix_synapse_container_labels_public_client_root_redirection_url', when: "{{ matrix_synapse_container_labels_public_client_root_redirection_enabled }}"}
  104. - {'name': 'matrix_synapse_container_labels_public_client_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_public_client_api_enabled }}"}
  105. - {'name': 'matrix_synapse_container_labels_internal_client_api_traefik_entrypoints', when: "{{ matrix_synapse_container_labels_internal_client_api_enabled }}"}
  106. - {'name': 'matrix_synapse_container_labels_internal_client_synapse_admin_api_traefik_entrypoints', when: "{{ matrix_synapse_container_labels_internal_client_synapse_admin_api_enabled }}"}
  107. - {'name': 'matrix_synapse_container_labels_public_client_synapse_client_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_public_client_synapse_client_api_enabled }}"}
  108. - {'name': 'matrix_synapse_container_labels_public_client_synapse_admin_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_public_client_synapse_admin_api_enabled }}"}
  109. - {'name': 'matrix_synapse_container_labels_public_federation_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_public_federation_api_enabled }}"}
  110. - {'name': 'matrix_synapse_container_labels_public_federation_api_traefik_entrypoints', when: "{{ matrix_synapse_container_labels_public_federation_api_enabled }}"}
  111. - {'name': 'matrix_synapse_metrics_proxying_hostname', when: "{{ matrix_synapse_metrics_proxying_enabled }}"}
  112. - {'name': 'matrix_synapse_metrics_proxying_path_prefix', when: "{{ matrix_synapse_metrics_proxying_enabled }}"}
  113. - {'name': 'matrix_synapse_matrix_authentication_service_endpoint', when: "{{ matrix_synapse_matrix_authentication_service_enabled }}"}
  114. - {'name': 'matrix_synapse_matrix_authentication_service_secret', when: "{{ matrix_synapse_matrix_authentication_service_enabled }}"}
  115. - {'name': 'matrix_synapse_container_labels_traefik_compression_middleware_name', when: "{{ matrix_synapse_container_labels_traefik_compression_middleware_enabled }}"}
  116. - name: Fail if asking for more than 1 instance of single-instance workers
  117. ansible.builtin.fail:
  118. msg: >-
  119. `{{ item }}` cannot be more than 1. This is a single-instance worker.
  120. when: "lookup('vars', item, default='') | int > 1"
  121. with_items:
  122. - "matrix_synapse_workers_appservice_workers_count"
  123. - "matrix_synapse_workers_user_dir_workers_count"
  124. - "matrix_synapse_workers_background_workers_count"
  125. - "matrix_synapse_workers_stream_writer_typing_stream_workers_count"
  126. - "matrix_synapse_workers_stream_writer_to_device_stream_workers_count"
  127. - "matrix_synapse_workers_stream_writer_account_data_stream_workers_count"
  128. - "matrix_synapse_workers_stream_writer_receipts_stream_workers_count"
  129. - "matrix_synapse_workers_stream_writer_presence_stream_workers_count"
  130. - name: Fail when mixing generic workers with new specialized workers
  131. ansible.builtin.fail:
  132. msg: >-
  133. Generic workers should not be mixed with the new specialized worker types (room workers, sync workers, client readers, and federation readers)
  134. when: matrix_synapse_workers_generic_workers_count | int > 0 and ((matrix_synapse_workers_room_workers_count | int + matrix_synapse_workers_sync_workers_count | int + matrix_synapse_workers_client_reader_workers_count | int + matrix_synapse_workers_federation_reader_workers_count | int) > 0)
  135. - when: matrix_synapse_container_image_customizations_templates_enabled | bool
  136. block:
  137. - name: Fail if required `matrix_synapse_container_image_customizations_templates_*` settings not defined
  138. ansible.builtin.fail:
  139. msg: >-
  140. You need to define a required configuration setting (`{{ item }}`) when enabling `matrix_synapse_container_image_customizations_templates_enabled`.
  141. when: "lookup('vars', item, default='') == ''"
  142. with_items:
  143. - matrix_synapse_container_image_customizations_templates_git_repository_url
  144. - matrix_synapse_container_image_customizations_templates_git_repository_branch
  145. - name: Fail if required `matrix_synapse_container_image_customizations_templates_git_repository_keyscan_*` settings not defined
  146. ansible.builtin.fail:
  147. msg: >-
  148. You need to define a required configuration setting (`{{ item }}`) when enabling `matrix_synapse_container_image_customizations_templates_git_repository_keyscan`.
  149. when: "matrix_synapse_container_image_customizations_templates_git_repository_keyscan_enabled | bool and lookup('vars', item, default='') == ''"
  150. with_items:
  151. - matrix_synapse_container_image_customizations_templates_git_repository_keyscan_hostname
  152. - name: Fail if known Synapse password provider modules are enabled when auth is delegated to Matrix Authentication Service
  153. ansible.builtin.fail:
  154. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it does not make sense to enable password provider modules, because it is not Synapse that is handling authentication. Please disable {{ item }} before enabling Matrix Authentication Service integration for Synapse. Synapse will refuse to start otherwise."
  155. when: matrix_synapse_matrix_authentication_service_enabled and lookup('vars', item, default='') | bool
  156. with_items:
  157. - matrix_synapse_ext_password_provider_rest_auth_enabled
  158. - matrix_synapse_ext_password_provider_shared_secret_auth_enabled
  159. - matrix_synapse_ext_password_provider_ldap_enabled
  160. - name: Fail if password config is enabled for Synapse when auth is delegated to Matrix Authentication Service
  161. ansible.builtin.fail:
  162. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it doesn't make sense to enable the password config (`matrix_synapse_password_config_enabled: true`), because it is not Synapse that is handling authentication. Please remove your `matrix_synapse_password_config_enabled: true` setting before enabling Matrix Authentication Service integration for Synapse. Synapse will refuse to start otherwise."
  163. when: matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_password_config_enabled
  164. - name: Fail if registration is enabled for Synapse when auth is delegated to Matrix Authentication Service
  165. ansible.builtin.fail:
  166. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it doesn't make sense to enable registration (`matrix_synapse_enable_registration: true`), because it is not Synapse that is handling authentication. Synapse will refuse to start otherwise."
  167. when: matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_enable_registration
  168. - name: Fail if registration CAPTCHA is enabled for Synapse when auth is delegated to Matrix Authentication Service
  169. ansible.builtin.fail:
  170. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it doesn't make sense to enable registration CAPTCHA (`matrix_synapse_enable_registration_captcha: true`), because it is not Synapse that is handling authentication. Synapse will refuse to start otherwise."
  171. when: matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_enable_registration_captcha
  172. - name: Fail if OpenID Connect is enabled for Synapse when auth is delegated to Matrix Authentication Service
  173. ansible.builtin.fail:
  174. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it doesn't make sense to enable OpenID Connect (`matrix_synapse_oidc_enabled: true`), because it is not Synapse that is handling authentication. Synapse will refuse to start otherwise."
  175. when: matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_oidc_enabled
  176. - name: Fail if CAS config is enabled for Synapse when auth is delegated to Matrix Authentication Service
  177. ansible.builtin.fail:
  178. msg: "When Synapse is delegating authentication to Matrix Authentication Service (`matrix_synapse_matrix_authentication_service_enabled: true`), it doesn't make sense to enable CAS config (`matrix_synapse_cas_config_enabled: true`), because it is not Synapse that is handling authentication. Synapse will refuse to start otherwise."
  179. when: matrix_synapse_matrix_authentication_service_enabled and matrix_synapse_cas_config_enabled
  180. - name: Fail if QR code login (MSC4108) is enabled while Matrix Authentication Service is not
  181. ansible.builtin.fail:
  182. msg: "When Synapse QR code login is enabled (MSC4108 via `matrix_synapse_experimental_features_msc4108_enabled`), Matrix Authentication Service integration (`matrix_synapse_matrix_authentication_service_enabled`) must also be enabled."
  183. when: matrix_synapse_experimental_features_msc4108_enabled and not matrix_synapse_matrix_authentication_service_enabled