Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

80 строки
5.6 KiB

  1. # SPDX-FileCopyrightText: 2020 - 2025 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2022 MDAD project contributors
  3. # SPDX-FileCopyrightText: 2024 Suguru Hirahara
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - name: (Deprecation) Catch and report renamed element-web 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_client_element_showLabsSettings', 'new': 'matrix_client_element_show_lab_settings'}
  15. - {'old': 'matrix_client_element_permalinkPrefix', 'new': 'matrix_client_element_permalink_prefix'}
  16. - {'old': 'matrix_client_element_roomdir_servers', 'new': 'matrix_client_element_room_directory_servers'}
  17. - {'old': 'matrix_client_element_settingDefaults_custom_themes', 'new': 'matrix_client_element_setting_defaults_custom_themes'}
  18. - {'old': 'matrix_client_element_branding_authFooterLinks', 'new': 'matrix_client_element_branding_auth_footer_links'}
  19. - {'old': 'matrix_client_element_branding_authHeaderLogoUrl', 'new': 'matrix_client_element_branding_auth_header_logo_url'}
  20. - {'old': 'matrix_client_element_branding_welcomeBackgroundUrl', 'new': 'matrix_client_element_branding_welcome_background_url'}
  21. - {'old': 'matrix_client_element_jitsi_preferredDomain', 'new': 'matrix_client_element_jitsi_preferred_domain'}
  22. - {'old': 'matrix_client_element_welcome_user_id', 'new': '<removed>'}
  23. - {'old': 'matrix_client_element_docker_image_name_prefix', 'new': 'matrix_client_element_container_image_registry_prefix'}
  24. - {'old': 'matrix_client_element_docker_image', 'new': 'matrix_client_element_container_image'}
  25. - {'old': 'matrix_client_element_docker_image_force_pull', 'new': 'matrix_client_element_container_image_force_pull'}
  26. - {'old': 'matrix_client_element_docker_image_registry_prefix', 'new': 'matrix_client_element_container_image_registry_prefix'}
  27. - {'old': 'matrix_client_element_docker_image_registry_prefix_upstream', 'new': 'matrix_client_element_container_image_registry_prefix_upstream'}
  28. - {'old': 'matrix_client_element_docker_image_registry_prefix_upstream_default', 'new': 'matrix_client_element_container_image_registry_prefix_upstream_default'}
  29. - {'old': 'matrix_client_element_docker_src_files_path', 'new': 'matrix_client_element_container_src_files_path'}
  30. - {'old': 'matrix_client_element_container_image_force_pull', 'new': '<removed> (the new community.docker.docker_image_pull module handles this natively)'}
  31. - name: Fail if required Element Web settings not defined
  32. ansible.builtin.fail:
  33. msg: >
  34. You need to define a required configuration setting (`{{ item }}`) for using Element Web.
  35. when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
  36. with_items:
  37. - {'name': 'matrix_client_element_default_hs_url', when: true}
  38. - {'name': 'matrix_client_element_container_network', when: true}
  39. - {'name': 'matrix_client_element_container_labels_traefik_compression_middleware_name', when: "{{ matrix_client_element_container_labels_traefik_compression_middleware_enabled }}"}
  40. - name: Fail if Element location sharing enabled, but no tile server defined
  41. ansible.builtin.fail:
  42. msg: >-
  43. You need to define at least one map tile server in matrix_client_element_location_sharing_map_style_content_sources_localsource_tiles list
  44. when:
  45. - matrix_client_element_location_sharing_enabled | bool
  46. - matrix_client_element_location_sharing_map_style_content_sources_localsource_tiles | length == 0
  47. - name: (Deprecation) Catch and report riot-web variables
  48. ansible.builtin.fail:
  49. msg: >-
  50. Riot has been renamed to Element (https://element.io/blog/welcome-to-element/).
  51. The playbook will migrate your existing configuration and data automatically, but you need to adjust variable names.
  52. Please rename these variable (`matrix_riot_web_*` -> `matrix_client_element_*`) on your configuration file (vars.yml): {{ lookup('ansible.builtin.varnames', '^matrix_riot_web_.+', wantlist=True) | join(', ') }}
  53. Also note that DNS configuration changes may be necessary.
  54. when: "lookup('ansible.builtin.varnames', '^matrix_riot_web_.+', wantlist=True) | length > 0"
  55. - when: matrix_client_element_container_labels_traefik_enabled | bool
  56. block:
  57. - name: Fail if required matrix-client-element Traefik settings not defined
  58. ansible.builtin.fail:
  59. msg: >-
  60. You need to define a required configuration setting (`{{ item }}`).
  61. when: "lookup('vars', item, default='') | string | length == 0"
  62. with_items:
  63. - matrix_client_element_container_labels_traefik_hostname
  64. - matrix_client_element_container_labels_traefik_path_prefix
  65. # We ensure it doesn't end with a slash, because we handle both (slash and no-slash).
  66. # Knowing that `matrix_client_element_container_labels_traefik_path_prefix` does not end with a slash
  67. # ensures we know how to set these routes up without having to do "does it end with a slash" checks elsewhere.
  68. - name: Fail if matrix_client_element_container_labels_traefik_path_prefix ends with a slash
  69. ansible.builtin.fail:
  70. msg: >-
  71. matrix_client_element_container_labels_traefik_path_prefix (`{{ matrix_client_element_container_labels_traefik_path_prefix }}`) must either be `/` or not end with a slash (e.g. `/element`).
  72. when: "matrix_client_element_container_labels_traefik_path_prefix != '/' and matrix_client_element_container_labels_traefik_path_prefix[-1] == '/'"