Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

55 líneas
4.2 KiB

  1. # SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2025 Suguru Hirahara
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - name: Fail if required matrix-authentication-service settings not defined
  7. ansible.builtin.fail:
  8. msg: >-
  9. You need to define a required configuration setting (`{{ item.name }}`).
  10. when: "item.when | bool and lookup('vars', item.name, default='') | string | length == 0"
  11. with_items:
  12. - {'name': 'matrix_authentication_service_hostname', when: true}
  13. - {'name': 'matrix_authentication_service_config_database_username', when: true}
  14. - {'name': 'matrix_authentication_service_config_database_password', when: true}
  15. - {'name': 'matrix_authentication_service_config_database_host', when: true}
  16. - {'name': 'matrix_authentication_service_config_database_database', when: true}
  17. - {'name': 'matrix_authentication_service_config_secrets_encryption', when: true}
  18. - {'name': 'matrix_authentication_service_config_matrix_homeserver', when: true}
  19. - {'name': 'matrix_authentication_service_config_matrix_secret', when: true}
  20. - {'name': 'matrix_authentication_service_config_matrix_endpoint', when: true}
  21. - {'name': 'matrix_authentication_service_container_labels_public_main_hostname', when: "{{ matrix_authentication_service_container_labels_traefik_enabled }}"}
  22. - {'name': 'matrix_authentication_service_container_labels_public_compatibility_layer_hostname', when: "{{ matrix_authentication_service_container_labels_public_compatibility_layer_enabled }}"}
  23. - {'name': 'matrix_authentication_service_container_labels_internal_compatibility_layer_entrypoints', when: "{{ matrix_authentication_service_container_labels_internal_compatibility_layer_enabled }}"}
  24. - {'name': 'matrix_authentication_service_config_email_hostname', when: "{{ matrix_authentication_service_config_email_transport == 'smtp' }}"}
  25. - name: Fail if matrix_authentication_service_config_secrets_encryption is not 64 characters long
  26. ansible.builtin.fail:
  27. msg: "matrix_authentication_service_config_secrets_encryption must be exactly 64 characters long (preferably generated via `openssl rand -hex 32`)"
  28. when: "matrix_authentication_service_config_secrets_encryption | length != 64"
  29. - name: Fail if matrix_authentication_service_config_email_transport is invalid
  30. ansible.builtin.fail:
  31. msg: "matrix_authentication_service_config_email_transport must be one of: blackhole, smtp, or aws_ses"
  32. when: "matrix_authentication_service_config_email_transport not in ['blackhole', 'smtp', 'aws_ses']"
  33. - name: (Deprecation) Catch and report renamed matrix-authentication-service settings
  34. ansible.builtin.fail:
  35. msg: >-
  36. Your configuration contains a variable, which now has a different name.
  37. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  38. when: "lookup('ansible.builtin.varnames', ('^' + item.old + '$'), wantlist=True) | length > 0"
  39. with_items:
  40. - {'old': 'matrix_authentication_service_container_image_name_prefix', 'new': 'matrix_authentication_service_container_image_registry_prefix'}
  41. - {'old': 'matrix_authentication_service_syn2mas_container_image_name_prefix', 'new': 'matrix_authentication_service_syn2mas_container_image_registry_prefix'}
  42. - {'old': 'matrix_authentication_service_syn2mas_container_image', 'new': '<removed>'}
  43. - {'old': 'matrix_authentication_service_syn2mas_container_image_registry_prefix', 'new': '<removed>'}
  44. - {'old': 'matrix_authentication_service_syn2mas_container_image_registry_prefix_upstream', 'new': '<removed>'}
  45. - {'old': 'matrix_authentication_service_syn2mas_container_image_registry_prefix_upstream_default', 'new': '<removed>'}
  46. - {'old': 'matrix_authentication_service_syn2mas_container_image_force_pull', 'new': '<removed>'}
  47. - {'old': 'matrix_authentication_service_syn2mas_container_image_self_build', 'new': '<removed>'}
  48. - {'old': 'matrix_authentication_service_syn2mas_process_extra_arguments', 'new': 'matrix_authentication_service_syn2mas_command_extra_options or matrix_authentication_service_syn2mas_subcommand_extra_options'}
  49. - {'old': 'matrix_authentication_service_syn2mas_dry_run', 'new': 'matrix_authentication_service_syn2mas_migrate_dry_run'}