Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

77 righe
5.3 KiB

  1. ---
  2. # Synapse Usage Exporter
  3. # Project source code URL: https://github.com/loelkes/synapse-usage-exporter
  4. matrix_synapse_usage_exporter_enabled: false
  5. # matrix_synapse_usage_exporter_identifier controls the identifier of this synapse-usage-exporter instance, which influences:
  6. # - the default storage path
  7. # - the names of systemd services and containers
  8. matrix_synapse_usage_exporter_identifier: matrix-synapse-usage-exporter
  9. matrix_synapse_usage_exporter_container_port: 5000
  10. # No docker images are currently hosted for the repo, so defaulting to true
  11. matrix_synapse_usage_exporter_container_image_self_build: true
  12. matrix_synapse_usage_exporter_container_image_self_build_repo: "https://github.com/loelkes/synapse-usage-exporter.git"
  13. matrix_synapse_usage_exporter_container_image_path: "loelkes/synapse-usage-exporter"
  14. matrix_synapse_usage_exporter_container_image: "{{ matrix_synapse_usage_exporter_container_image_name_prefix }}{{ matrix_synapse_usage_exporter_container_image_path }}:{{ matrix_synapse_usage_exporter_container_image_tag }}"
  15. matrix_synapse_usage_exporter_container_image_name_prefix: "{{ 'localhost/' if matrix_synapse_usage_exporter_container_image_self_build else matrix_container_global_registry_prefix }}"
  16. matrix_synapse_usage_exporter_container_image_tag: "{{ 'main' if matrix_synapse_usage_exporter_container_image_self_build else 'latest' }}"
  17. matrix_synapse_usage_exporter_container_image_force_pull: "{{ matrix_synapse_usage_exporter_container_image.endswith(':latest') }}"
  18. matrix_synapse_usage_exporter_base_path: "{{ matrix_base_data_path }}/{{ matrix_synapse_usage_exporter_identifier }}"
  19. matrix_synapse_usage_exporter_docker_src_files_path: "{{ matrix_synapse_usage_exporter_base_path }}/docker-src"
  20. # List of systemd services that synapse-usage-exporter.service depends on
  21. matrix_synapse_usage_exporter_systemd_required_services_list: "{{ matrix_synapse_usage_exporter_systemd_required_services_list_default + matrix_synapse_usage_exporter_systemd_required_services_list_auto + matrix_synapse_usage_exporter_systemd_required_services_list_custom }}"
  22. matrix_synapse_usage_exporter_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  23. matrix_synapse_usage_exporter_systemd_required_services_list_auto: []
  24. matrix_synapse_usage_exporter_systemd_required_services_list_custom: []
  25. # List of systemd services that synapse-usage-exporter.service wants
  26. matrix_synapse_usage_exporter_systemd_wanted_services_list: []
  27. # The base container network. It will be auto-created by this role if it doesn't exist already.
  28. matrix_synapse_usage_exporter_container_network: "{{ matrix_synapse_usage_exporter_identifier }}"
  29. # A list of additional container networks that the container would be connected to.
  30. # The role does not create these networks, so make sure they already exist.
  31. # Use this to expose this container to another reverse proxy, which runs in a different container network.
  32. matrix_synapse_usage_exporter_container_additional_networks: []
  33. # Extra arguments for the Docker container
  34. matrix_synapse_usage_exporter_container_extra_arguments: []
  35. # Controls whether the synapse usage exporter should be proxied (exposed) on `matrix.DOMAIN/report-usage-stats/push`
  36. matrix_synapse_usage_exporter_proxying_enabled: false
  37. # matrix_synapse_usage_exporter_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  38. # See `../templates/labels.j2` for details.
  39. #
  40. # To inject your own other container labels, see `matrix_synapse_usage_exporter_container_labels_additional_labels`.
  41. matrix_synapse_usage_exporter_container_labels_traefik_enabled: "{{ matrix_synapse_usage_exporter_proxying_enabled }}"
  42. matrix_synapse_usage_exporter_container_labels_traefik_docker_network: "{{ matrix_synapse_usage_exporter_container_network }}"
  43. matrix_synapse_usage_exporter_container_labels_traefik_path_prefix: "/report-usage-stats/push"
  44. matrix_synapse_usage_exporter_container_labels_traefik_rule: "Host(`{{ matrix_server_fqn_matrix }}`) && PathPrefix(`{{ matrix_synapse_usage_exporter_container_labels_traefik_path_prefix | quote }}`)"
  45. matrix_synapse_usage_exporter_container_labels_traefik_priority: 0
  46. matrix_synapse_usage_exporter_container_labels_traefik_entrypoints: "web-secure"
  47. matrix_synapse_usage_exporter_container_labels_traefik_tls: "{{ matrix_synapse_usage_exporter_container_labels_traefik_entrypoints != 'web' }}"
  48. matrix_synapse_usage_exporter_container_labels_traefik_tls_certResolver: default # noqa var-naming
  49. # matrix_synapse_usage_exporter_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  50. # See `../templates/labels.j2` for details.
  51. #
  52. # Example:
  53. # matrix_synapse_usage_exporter_container_labels_additional_labels: |
  54. # my.label=1
  55. # another.label="here"
  56. matrix_synapse_usage_exporter_container_labels_additional_labels: ''
  57. # matrix_synapse_usage_exporter_dashboard_urls contains a list of URLs with Grafana dashboard definitions.
  58. # If the Grafana role is enabled, these dashboards will be downloaded.
  59. matrix_synapse_usage_exporter_dashboard_urls:
  60. - https://raw.githubusercontent.com/spantaleev/matrix-docker-ansible-deploy/master/roles/custom/matrix-synapse-usage-exporter/templates/grafana/synapse-usage-exporter.json