Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

110 wiersze
8.4 KiB

  1. ---
  2. - name: Fail if required Synapse settings not defined
  3. ansible.builtin.fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item.name }}`).
  6. when: "item.when | bool and vars[item.name] == ''"
  7. with_items:
  8. - {'name': 'matrix_synapse_username', when: true}
  9. - {'name': 'matrix_synapse_uid', when: true}
  10. - {'name': 'matrix_synapse_gid', when: true}
  11. - {'name': 'matrix_synapse_container_network', when: true}
  12. - {'name': 'matrix_synapse_macaroon_secret_key', when: true}
  13. - {'name': 'matrix_synapse_database_host', when: true}
  14. - {'name': 'matrix_synapse_database_user', when: true}
  15. - {'name': 'matrix_synapse_database_password', when: true}
  16. - {'name': 'matrix_synapse_database_database', when: true}
  17. - {'name': 'matrix_synapse_container_labels_client_root_traefik_hostname', when: "{{ matrix_synapse_container_labels_client_root_enabled }}"}
  18. - {'name': 'matrix_synapse_container_labels_client_root_redirection_url', when: "{{ matrix_synapse_container_labels_client_root_redirection_enabled }}"}
  19. - {'name': 'matrix_synapse_container_labels_client_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_client_api_enabled }}"}
  20. - {'name': 'matrix_synapse_container_labels_client_synapse_client_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_client_synapse_client_api_enabled }}"}
  21. - {'name': 'matrix_synapse_container_labels_client_synapse_oidc_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_client_synapse_oidc_api_enabled }}"}
  22. - {'name': 'matrix_synapse_container_labels_client_synapse_admin_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_client_synapse_admin_api_enabled }}"}
  23. - {'name': 'matrix_synapse_container_labels_federation_api_traefik_hostname', when: "{{ matrix_synapse_container_labels_federation_api_enabled }}"}
  24. - {'name': 'matrix_synapse_container_labels_federation_api_traefik_entrypoints', when: "{{ matrix_synapse_container_labels_federation_api_enabled }}"}
  25. - name: Fail if asking for more than 1 instance of single-instance workers
  26. ansible.builtin.fail:
  27. msg: >-
  28. `{{ item }}` cannot be more than 1. This is a single-instance worker.
  29. when: "vars[item] | int > 1"
  30. with_items:
  31. - "matrix_synapse_workers_appservice_workers_count"
  32. - "matrix_synapse_workers_user_dir_workers_count"
  33. - "matrix_synapse_workers_background_workers_count"
  34. - "matrix_synapse_workers_stream_writer_typing_stream_workers_count"
  35. - "matrix_synapse_workers_stream_writer_to_device_stream_workers_count"
  36. - "matrix_synapse_workers_stream_writer_account_data_stream_workers_count"
  37. - "matrix_synapse_workers_stream_writer_receipts_stream_workers_count"
  38. - "matrix_synapse_workers_stream_writer_presence_stream_workers_count"
  39. - name: (Deprecation) Catch and report renamed settings
  40. ansible.builtin.fail:
  41. msg: >-
  42. Your configuration contains a variable, which now has a different name.
  43. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  44. when: "item.old in vars"
  45. with_items:
  46. - {'old': 'matrix_synapse_email_riot_base_url', 'new': '<superseded by client_base_url>'}
  47. - {'old': 'matrix_synapse_container_expose_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  48. - {'old': 'matrix_synapse_no_tls', 'new': '<removed>'}
  49. - {'old': 'matrix_enable_room_list_search', 'new': 'matrix_synapse_enable_room_list_search'}
  50. - {'old': 'matrix_alias_creation_rules', 'new': 'matrix_synapse_alias_creation_rules'}
  51. - {'old': 'matrix_room_list_publication_rules', 'new': 'matrix_synapse_room_list_publication_rules'}
  52. - {'old': 'matrix_synapse_rc_messages_per_second', 'new': '<per_second subkey of matrix_synapse_rc_message>'}
  53. - {'old': 'matrix_synapse_rc_message_burst_count', 'new': '<burst_count subkey of matrix_synapse_rc_message>'}
  54. - {'old': 'matrix_synapse_federation_rc_window_size', 'new': '<window_size subkey of matrix_synapse_rc_federation>'}
  55. - {'old': 'matrix_synapse_federation_rc_sleep_limit', 'new': '<sleep_limit subkey of matrix_synapse_rc_federation>'}
  56. - {'old': 'matrix_synapse_federation_rc_sleep_delay', 'new': '<sleep_delay subkey of matrix_synapse_rc_federation>'}
  57. - {'old': 'matrix_synapse_federation_rc_reject_limit', 'new': '<reject_limit subkey of matrix_synapse_rc_federation>'}
  58. - {'old': 'matrix_synapse_federation_rc_concurrent', 'new': '<concurrent subkey of matrix_synapse_rc_federation>'}
  59. - {'old': 'matrix_synapse_container_expose_client_api_port', 'new': '<superseded by matrix_synapse_container_client_api_host_bind_port>'}
  60. - {'old': 'matrix_synapse_container_expose_federation_api_port', 'new': '<superseded by matrix_synapse_container_federation_api_plain_host_bind_port>'}
  61. - {'old': 'matrix_synapse_container_expose_metrics_port', 'new': '<superseded by matrix_synapse_container_metrics_api_host_bind_port>'}
  62. - {'old': 'matrix_synapse_cache_factor', 'new': 'matrix_synapse_caches_global_factor'}
  63. - {'old': 'matrix_synapse_trusted_third_party_id_servers', 'new': '<deprecated in Synapse v0.99.4 and removed in Synapse v1.19.0>'}
  64. - {'old': 'matrix_synapse_use_presence', 'new': 'matrix_synapse_presence_enabled'}
  65. - {'old': 'matrix_synapse_version_arm64', 'new': '<superseded by matrix_synapse_version - see https://github.com/matrix-org/synapse/pull/11810>'}
  66. - {'old': 'matrix_synapse_enable_group_creation', 'new': '<removed in Synapse v1.61.0 - use the new Spaces feature instead>'}
  67. - {'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>'}
  68. - {'old': 'matrix_synapse_workers_frontend_proxy_workers_count', 'new': '<removed in favor of generic workers - see https://github.com/matrix-org/synapse/pull/13645>'}
  69. - {'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>'}
  70. - {'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>'}
  71. - {'old': 'matrix_synapse_ext_s3_storage_provider_path', 'new': 'matrix_synapse_ext_s3_storage_provider_base_path'}
  72. - {'old': 'matrix_synapse_send_federation', 'new': '<unnecessary - Synapse relies on federation_sender_instances now>'}
  73. - {'old': 'matrix_synapse_start_pushers', 'new': '<unnecessary - Synapse relies on pusher_instances now>'}
  74. - {'old': 'matrix_synapse_spam_checker', 'new': '<superseded by matrix_synapse_modules>'}
  75. - name: (Deprecation) Catch and report renamed settings in matrix_synapse_configuration_extension_yaml
  76. ansible.builtin.fail:
  77. msg: >-
  78. Your matrix_synapse_configuration_extension_yaml configuration contains a variable, which now has a different name.
  79. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  80. when: "item.old in matrix_synapse_configuration_extension"
  81. with_items:
  82. - {'old': 'federation_ip_range_blacklist', 'new': 'ip_range_blacklist'}
  83. - when: matrix_synapse_container_image_customizations_templates_enabled | bool
  84. block:
  85. - name: Fail if required `matrix_synapse_container_image_customizations_templates_*` settings not defined
  86. ansible.builtin.fail:
  87. msg: >-
  88. You need to define a required configuration setting (`{{ item }}`) when enabling `matrix_synapse_container_image_customizations_templates_enabled`.
  89. when: "vars[item] == ''"
  90. with_items:
  91. - matrix_synapse_container_image_customizations_templates_git_repository_url
  92. - matrix_synapse_container_image_customizations_templates_git_repository_branch
  93. - name: Fail if required `matrix_synapse_container_image_customizations_templates_git_repository_keyscan_*` settings not defined
  94. ansible.builtin.fail:
  95. msg: >-
  96. You need to define a required configuration setting (`{{ item }}`) when enabling `matrix_synapse_container_image_customizations_templates_git_repository_keyscan`.
  97. when: "matrix_synapse_container_image_customizations_templates_git_repository_keyscan_enabled | bool and vars[item] == ''"
  98. with_items:
  99. - matrix_synapse_container_image_customizations_templates_git_repository_keyscan_hostname