Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

47 satır
3.1 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 vars[item.name] | 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: "item.old in vars"
  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'}