Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

358 lines
20 KiB

  1. ---
  2. # A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.
  3. # Project source code URL: https://github.com/matrix-org/matrix-hookshot
  4. matrix_hookshot_enabled: true
  5. matrix_hookshot_identifier: matrix-hookshot
  6. matrix_hookshot_container_image_self_build: false
  7. matrix_hookshot_container_image_self_build_repo: "https://github.com/matrix-org/matrix-hookshot.git"
  8. matrix_hookshot_container_image_self_build_branch: "{{ 'main' if matrix_hookshot_version == 'latest' else matrix_hookshot_version }}"
  9. # Specifies additional networks for the Hookshot container to connect with
  10. matrix_hookshot_container_additional_networks: "{{ matrix_hookshot_container_additional_networks_auto + matrix_hookshot_container_additional_networks_custom }}"
  11. matrix_hookshot_container_additional_networks_auto: []
  12. matrix_hookshot_container_additional_networks_custom: []
  13. # renovate: datasource=docker depName=halfshot/matrix-hookshot
  14. matrix_hookshot_version: 5.3.0
  15. matrix_hookshot_docker_image: "{{ matrix_hookshot_docker_image_name_prefix }}halfshot/matrix-hookshot:{{ matrix_hookshot_version }}"
  16. matrix_hookshot_docker_image_name_prefix: "{{ 'localhost/' if matrix_hookshot_container_image_self_build else matrix_container_global_registry_prefix }}"
  17. matrix_hookshot_docker_image_force_pull: "{{ matrix_hookshot_docker_image.endswith(':latest') }}"
  18. matrix_hookshot_base_path: "{{ matrix_base_data_path }}/hookshot"
  19. matrix_hookshot_docker_src_files_path: "{{ matrix_hookshot_base_path }}/docker-src"
  20. matrix_hookshot_homeserver_address: ""
  21. matrix_hookshot_container_url: 'matrix-hookshot'
  22. matrix_hookshot_public_hostname: "{{ matrix_server_fqn_matrix }}"
  23. matrix_hookshot_public_endpoint: /hookshot
  24. matrix_hookshot_urlprefix: "https://{{ matrix_hookshot_public_hostname }}{{ matrix_hookshot_public_endpoint }}"
  25. # There is no need to edit ports. use matrix_hookshot_container_http_host_bind_ports below to expose ports instead.
  26. matrix_hookshot_appservice_port: 9993
  27. matrix_hookshot_appservice_hostname: "{{ matrix_hookshot_public_hostname }}"
  28. matrix_hookshot_appservice_endpoint: "{{ matrix_hookshot_public_endpoint }}/_matrix/app"
  29. # The variables below control the queue parameters and may optionally be pointed to a Redis instance.
  30. # These are required when experimental encryption is enabled (`matrix_hookshot_experimental_encryption_enabled`).
  31. matrix_hookshot_queue_host: ''
  32. matrix_hookshot_queue_port: 6739
  33. # Controls whether the experimental end-to-bridge encryption support is enabled.
  34. # This requires that:
  35. # - support to also be enabled in the homeserver, see the documentation of Hookshot.
  36. # - Hookshot to be pointed at a Redis instance via the `matrix_hookshot_queue_*` variables.
  37. matrix_hookshot_experimental_encryption_enabled: false
  38. # Controls whether metrics are enabled in the bridge configuration.
  39. # Enabling them is usually enough for a local (in-container) Prometheus to consume them.
  40. # If metrics need to be consumed by another (external) Prometheus server, consider exposing them via `matrix_hookshot_metrics_proxying_enabled`.
  41. matrix_hookshot_metrics_enabled: false
  42. # Controls whether Hookshot metrics should be proxied (exposed) on a public URL.
  43. matrix_hookshot_metrics_proxying_enabled: false
  44. matrix_hookshot_metrics_proxying_hostname: ''
  45. matrix_hookshot_metrics_proxying_path_prefix: ''
  46. # There is no need to edit ports.
  47. # Read the documentation to learn about using Hookshot metrics with external Prometheus
  48. # If you still want something different, use matrix_hookshot_container_http_host_bind_ports below to expose ports instead.
  49. matrix_hookshot_metrics_port: 9001
  50. # There is no need to edit ports. use matrix_hookshot_container_http_host_bind_ports below to expose ports instead.
  51. matrix_hookshot_webhook_port: 9000
  52. matrix_hookshot_webhook_hostname: "{{ matrix_hookshot_public_hostname }}"
  53. matrix_hookshot_webhook_endpoint: "{{ matrix_hookshot_public_endpoint }}/webhooks"
  54. # You need to create a GitHub app to enable this and fill in the empty variables below
  55. # https://matrix-org.github.io/matrix-hookshot/setup/github.html
  56. matrix_hookshot_github_enabled: false
  57. matrix_hookshot_github_auth_id: ''
  58. # Set this variable to the contents of the generated and downloaded GitHub private key:
  59. # matrix_hookshot_github_private_key: |
  60. # -----BEGIN RSA PRIVATE KEY-----
  61. # 0123456789ABCDEF...
  62. # -----END RSA PRIVATE KEY-----
  63. # Alternatively, leave it empty and do it manually or use matrix-aux instead, see docs/matrix-bridge-hookshot.md for info.
  64. matrix_hookshot_github_private_key: ''
  65. matrix_hookshot_github_private_key_file: 'private-key.pem'
  66. matrix_hookshot_github_webhook_secret: '' # "Webhook secret" on the GitHub App page
  67. matrix_hookshot_github_oauth_enabled: false
  68. # You need to configure oauth settings only when you have enabled oauth (optional)
  69. matrix_hookshot_github_oauth_client_id: '' # "Client ID" on the GitHub App page
  70. matrix_hookshot_github_oauth_client_secret: '' # "Client Secret" on the GitHub App page
  71. # Default value of matrix_hookshot_github_oauth_endpoint: "/hookshot/webhooks/oauth"
  72. matrix_hookshot_github_oauth_endpoint: "{{ matrix_hookshot_webhook_endpoint }}/oauth"
  73. matrix_hookshot_github_oauth_redirect_uri: "https://{{ matrix_hookshot_urlprefix }}{{ matrix_hookshot_github_oauth_endpoint }}"
  74. # These are the default settings mentioned here and don't need to be modified: https://matrix-org.github.io/matrix-hookshot/usage/room_configuration/github_repo.html#configuration
  75. matrix_hookshot_github_defaultOptions_ignoreHooks: {} # noqa var-naming
  76. matrix_hookshot_github_defaultOptions_commandPrefix: '!gh' # noqa var-naming
  77. matrix_hookshot_github_defaultOptions_showIssueRoomLink: false # noqa var-naming
  78. matrix_hookshot_github_defaultOptions_prDiff: # noqa var-naming
  79. enabled: false
  80. maxLines: 5
  81. matrix_hookshot_github_defaultOptions_includingLabels: '' # noqa var-naming
  82. matrix_hookshot_github_defaultOptions_excludingLabels: '' # noqa var-naming
  83. matrix_hookshot_github_defaultOptions_hotlinkIssues_prefix: "#" # noqa var-naming
  84. matrix_hookshot_gitlab_enabled: true
  85. # Optionally add your instances, e.g.
  86. # matrix_hookshot_gitlab_instances:
  87. # gitlab.com:
  88. # url: https://gitlab.com
  89. # mygitlab:
  90. # url: https://gitlab.example.org
  91. matrix_hookshot_gitlab_instances:
  92. gitlab.com:
  93. url: https://gitlab.com
  94. # This will be the "Secret token" you have to enter into all GitLab instances for authentication
  95. matrix_hookshot_gitlab_webhook_secret: ''
  96. matrix_hookshot_figma_enabled: false
  97. # Default value of matrix_hookshot_figma_endpoint: "/hookshot/webhooks/figma/webhook"
  98. matrix_hookshot_figma_endpoint: "{{ matrix_hookshot_webhook_endpoint }}/figma/webhook"
  99. matrix_hookshot_figma_publicUrl: "{{ matrix_hookshot_urlprefix }}{{ matrix_hookshot_figma_endpoint }}" # noqa var-naming
  100. # To bridge figma webhooks, you need to configure one of multiple instances like this:
  101. # matrix_hookshot_figma_instances:
  102. # your-instance:
  103. # teamId: your-team-id
  104. # accessToken: your-personal-access-token
  105. # passcode: your-webhook-passcode
  106. matrix_hookshot_figma_instances: {}
  107. matrix_hookshot_jira_enabled: false
  108. # Get the these values from https://matrix-org.github.io/matrix-hookshot/setup/jira.html#jira-oauth
  109. matrix_hookshot_jira_webhook_secret: ''
  110. matrix_hookshot_jira_oauth_enabled: false
  111. matrix_hookshot_jira_oauth_client_id: ''
  112. matrix_hookshot_jira_oauth_client_secret: ''
  113. # Default value of matrix_hookshot_jira_oauth_endpoint: "/hookshot/webhooks/jira/oauth"
  114. matrix_hookshot_jira_oauth_endpoint: "{{ matrix_hookshot_webhook_endpoint }}/jira/oauth"
  115. matrix_hookshot_jira_oauth_redirect_uri: "{{ matrix_hookshot_urlprefix }}{{ matrix_hookshot_jira_oauth_endpoint }}"
  116. # No need to change these
  117. matrix_hookshot_generic_enabled: true
  118. matrix_hookshot_generic_enableHttpGet: false # noqa var-naming
  119. # Default value of matrix_hookshot_generic_endpoint: "/hookshot/webhooks"
  120. matrix_hookshot_generic_endpoint: "{{ matrix_hookshot_webhook_endpoint }}"
  121. # urlprefix gets updated with protocol & port in group_vars/matrix_servers
  122. matrix_hookshot_generic_urlPrefix: "{{ matrix_hookshot_urlprefix }}{{ matrix_hookshot_generic_endpoint }}" # noqa var-naming
  123. # If you're also using matrix-appservice-webhooks, take care that these prefixes don't overlap
  124. matrix_hookshot_generic_userIdPrefix: '_webhooks_' # noqa var-naming
  125. matrix_hookshot_generic_allowJsTransformationFunctions: false # noqa var-naming
  126. matrix_hookshot_generic_waitForComplete: false # noqa var-naming
  127. matrix_hookshot_feeds_enabled: true
  128. matrix_hookshot_feeds_pollIntervalSeconds: 600 # noqa var-naming
  129. matrix_hookshot_feeds_pollTimeoutSeconds: 30 # noqa var-naming
  130. matrix_hookshot_provisioning_enabled: false
  131. # There is no need to edit ports. use matrix_hookshot_container_http_host_bind_ports below to expose ports instead.
  132. matrix_hookshot_provisioning_port: 9002
  133. matrix_hookshot_provisioning_secret: ''
  134. # Provisioning will be automatically enabled if dimension is enabled and you have provided a provisioning secret, unless you override it
  135. matrix_hookshot_provisioning_internal: "/v1"
  136. matrix_hookshot_provisioning_hostname: "{{ matrix_hookshot_public_hostname }}"
  137. matrix_hookshot_provisioning_endpoint: "{{ matrix_hookshot_public_endpoint }}{{ matrix_hookshot_provisioning_internal }}"
  138. # Valid logging levels are: debug, info, warn, error
  139. matrix_hookshot_logging_level: warn
  140. matrix_hookshot_widgets_enabled: true
  141. matrix_hookshot_widgets_port: 9003
  142. matrix_hookshot_widgets_addToAdminRooms: false # default off as it is a beta feature # noqa var-naming
  143. matrix_hookshot_widgets_roomSetupWidget_enabled: true # noqa var-naming
  144. matrix_hookshot_widgets_roomSetupWidget_addOnInvite: false # noqa var-naming
  145. # `disallowedIpRanges` describes which IP ranges should be disallowed when resolving homeserver IP addresses (for security reasons). Unless you know what you are doing, it is recommended to not include this key. The following IPs are blocked by default, unless you supply another list.
  146. # matrix_hookshot_widgets_disallowedIpRanges:
  147. # - 127.0.0.0/8
  148. # - 10.0.0.0/8
  149. # - 172.16.0.0/12
  150. # - 192.168.0.0/16
  151. # - 100.64.0.0/10
  152. # - 192.0.0.0/24
  153. # - 169.254.0.0/16
  154. # - 192.88.99.0/24
  155. # - 198.18.0.0/15
  156. # - 192.0.2.0/24
  157. # - 198.51.100.0/24
  158. # - 203.0.113.0/24
  159. # - 224.0.0.0/4
  160. # - ::1/128
  161. # - fe80::/10
  162. # - fc00::/7
  163. # - 2001:db8::/32
  164. # - ff00::/8
  165. # - fec0::/10
  166. matrix_hookshot_widgets_disallowedIpRanges: '' # noqa var-naming
  167. matrix_hookshot_widgets_internal: "/widgetapi"
  168. matrix_hookshot_widgets_hostname: "{{ matrix_hookshot_public_hostname }}"
  169. matrix_hookshot_widgets_endpoint: "{{ matrix_hookshot_public_endpoint }}{{ matrix_hookshot_widgets_internal }}"
  170. matrix_hookshot_widgets_publicUrl: "{{ matrix_hookshot_urlprefix }}{{ matrix_hookshot_widgets_endpoint }}/v1/static/" # noqa var-naming
  171. matrix_hookshot_widgets_branding_widgetTitle: "Hookshot Configuration" # noqa var-naming
  172. # You can configure access to the bridge as documented here https://matrix-org.github.io/matrix-hookshot/setup.html#permissions
  173. # When empty, the default permissions are applied.
  174. # Example:
  175. # matrix_hookshot_permissions:
  176. # - actor: *
  177. # services:
  178. # - service: *
  179. # level: commands
  180. # - actor: example.com
  181. # services:
  182. # - service: "*"
  183. # level: admin
  184. matrix_hookshot_permissions: []
  185. matrix_hookshot_bot_displayname: Hookshot Bot
  186. matrix_hookshot_bot_avatar: 'mxc://half-shot.uk/2876e89ccade4cb615e210c458e2a7a6883fe17d'
  187. matrix_hookshot_container_network: ""
  188. # A list of extra arguments to pass to the container
  189. matrix_hookshot_container_extra_arguments: []
  190. # matrix_hookshot_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  191. # See `../templates/labels.j2` for details.
  192. #
  193. # To inject your own other container labels, see `matrix_hookshot_container_labels_additional_labels`.
  194. matrix_hookshot_container_labels_traefik_enabled: true
  195. matrix_hookshot_container_labels_traefik_docker_network: "{{ matrix_hookshot_container_network }}"
  196. matrix_hookshot_container_labels_traefik_entrypoints: web-secure
  197. matrix_hookshot_container_labels_traefik_tls_certResolver: default # noqa var-naming
  198. # Controls whether labels will be added that expose Hookshot's webhooks endpoint
  199. matrix_hookshot_container_labels_webhooks_enabled: true
  200. matrix_hookshot_container_labels_webhooks_traefik_rule: "Host(`{{ matrix_hookshot_webhook_hostname }}`) && PathPrefix(`{{ matrix_hookshot_webhook_endpoint }}`)"
  201. matrix_hookshot_container_labels_webhooks_traefik_priority: 0
  202. matrix_hookshot_container_labels_webhooks_traefik_entrypoints: "{{ matrix_hookshot_container_labels_traefik_entrypoints }}"
  203. matrix_hookshot_container_labels_webhooks_traefik_tls: "{{ matrix_hookshot_container_labels_webhooks_traefik_entrypoints != 'web' }}"
  204. matrix_hookshot_container_labels_webhooks_traefik_tls_certResolver: "{{ matrix_hookshot_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  205. # Controls whether labels will be added that expose Hookshot's generic endpoint
  206. matrix_hookshot_container_labels_appservice_enabled: true
  207. matrix_hookshot_container_labels_appservice_traefik_rule: "Host(`{{ matrix_hookshot_appservice_hostname }}`) && PathPrefix(`{{ matrix_hookshot_appservice_endpoint }}`)"
  208. matrix_hookshot_container_labels_appservice_traefik_priority: 0
  209. matrix_hookshot_container_labels_appservice_traefik_entrypoints: "{{ matrix_hookshot_container_labels_traefik_entrypoints }}"
  210. matrix_hookshot_container_labels_appservice_traefik_tls: "{{ matrix_hookshot_container_labels_appservice_traefik_entrypoints != 'web' }}"
  211. matrix_hookshot_container_labels_appservice_traefik_tls_certResolver: "{{ matrix_hookshot_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  212. # Controls whether labels will be added that expose Hookshot's widgets endpoint
  213. matrix_hookshot_container_labels_widgets_enabled: "{{ matrix_hookshot_widgets_enabled }}"
  214. matrix_hookshot_container_labels_widgets_traefik_rule: "Host(`{{ matrix_hookshot_widgets_hostname }}`) && PathPrefix(`{{ matrix_hookshot_widgets_endpoint }}`)"
  215. matrix_hookshot_container_labels_widgets_traefik_priority: 0
  216. matrix_hookshot_container_labels_widgets_traefik_entrypoints: "{{ matrix_hookshot_container_labels_traefik_entrypoints }}"
  217. matrix_hookshot_container_labels_widgets_traefik_tls: "{{ matrix_hookshot_container_labels_widgets_traefik_entrypoints != 'web' }}"
  218. matrix_hookshot_container_labels_widgets_traefik_tls_certResolver: "{{ matrix_hookshot_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  219. # Controls whether labels will be added that expose Hookshot's provisioning endpoint
  220. matrix_hookshot_container_labels_provisioning_enabled: "{{ matrix_hookshot_provisioning_enabled }}"
  221. matrix_hookshot_container_labels_provisioning_traefik_rule: "Host(`{{ matrix_hookshot_provisioning_hostname }}`) && PathPrefix(`{{ matrix_hookshot_provisioning_endpoint }}`)"
  222. matrix_hookshot_container_labels_provisioning_traefik_priority: 0
  223. matrix_hookshot_container_labels_provisioning_traefik_entrypoints: "{{ matrix_hookshot_container_labels_traefik_entrypoints }}"
  224. matrix_hookshot_container_labels_provisioning_traefik_tls: "{{ matrix_hookshot_container_labels_provisioning_traefik_entrypoints != 'web' }}"
  225. matrix_hookshot_container_labels_provisioning_traefik_tls_certResolver: "{{ matrix_hookshot_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  226. # Controls whether labels will be added that expose Hookshot's provisioning endpoint
  227. matrix_hookshot_container_labels_metrics_enabled: "{{ matrix_hookshot_metrics_enabled and matrix_hookshot_metrics_proxying_enabled }}"
  228. matrix_hookshot_container_labels_metrics_traefik_rule: "Host(`{{ matrix_hookshot_metrics_proxying_hostname }}`) && PathPrefix(`{{ matrix_hookshot_metrics_proxying_path_prefix }}`)"
  229. matrix_hookshot_container_labels_metrics_traefik_priority: 0
  230. matrix_hookshot_container_labels_metrics_traefik_entrypoints: "{{ matrix_hookshot_container_labels_traefik_entrypoints }}"
  231. matrix_hookshot_container_labels_metrics_traefik_tls: "{{ matrix_hookshot_container_labels_metrics_traefik_entrypoints != 'web' }}"
  232. matrix_hookshot_container_labels_metrics_traefik_tls_certResolver: "{{ matrix_hookshot_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  233. matrix_hookshot_container_labels_metrics_middleware_basic_auth_enabled: false
  234. # See: https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
  235. matrix_hookshot_container_labels_metrics_middleware_basic_auth_users: ''
  236. # matrix_hookshot_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  237. # See `../templates/labels.j2` for details.
  238. #
  239. # Example:
  240. # matrix_hookshot_container_labels_additional_labels: |
  241. # my.label=1
  242. # another.label="here"
  243. matrix_hookshot_container_labels_additional_labels: ''
  244. # List of systemd services that service depends on.
  245. matrix_hookshot_systemd_required_services_list: "{{ matrix_hookshot_systemd_required_services_list_default + matrix_hookshot_systemd_required_services_list_auto + matrix_hookshot_systemd_required_services_list_custom }}"
  246. matrix_hookshot_systemd_required_services_list_default: ['docker.service']
  247. matrix_hookshot_systemd_required_services_list_auto: []
  248. matrix_hookshot_systemd_required_services_list_custom: []
  249. # List of systemd services that service wants
  250. matrix_hookshot_systemd_wanted_services_list: []
  251. # List of ports to bind to the host to expose them directly.
  252. # Supply docker port bind arguments in a list like this:
  253. #
  254. # matrix_hookshot_container_http_host_bind_ports:
  255. # - "127.0.0.1:9999:{{ matrix_hookshot_metrics_port }}"
  256. #
  257. # Above example will bind the metrics port in the container to port 9999 on localhost.
  258. matrix_hookshot_container_http_host_bind_ports: []
  259. # These tokens will be set automatically
  260. matrix_hookshot_appservice_token: ''
  261. matrix_hookshot_homeserver_token: ''
  262. # Default configuration template which covers the generic use case.
  263. # You can customize it by controlling the various variables inside it.
  264. #
  265. # For a more advanced customization, you can extend the default (see `matrixhookshot_configuration_extension_yaml`)
  266. # or completely replace this variable with your own template.
  267. matrix_hookshot_configuration_yaml: "{{ lookup('template', 'templates/config.yml.j2') }}"
  268. matrix_hookshot_configuration_extension_yaml: |
  269. # Your custom YAML configuration goes here.
  270. # This configuration extends the default starting configuration (`matrix_hookshot_configuration_yaml`).
  271. #
  272. # You can override individual variables from the default configuration, or introduce new ones.
  273. #
  274. # If you need something more special, you can take full control by
  275. # completely redefining `matrix_hookshot_configuration_yaml`.
  276. matrix_hookshot_configuration_extension: "{{ matrix_hookshot_configuration_extension_yaml | from_yaml if matrix_hookshot_configuration_extension_yaml | from_yaml is mapping else {} }}"
  277. # Holds the final configuration (a combination of the default and its extension).
  278. # You most likely don't need to touch this variable. Instead, see `matrix_hookshot_configuration_yaml`.
  279. matrix_hookshot_configuration: "{{ matrix_hookshot_configuration_yaml | from_yaml | combine(matrix_hookshot_configuration_extension, recursive=True) }}"
  280. # Default registration template which covers the generic use case.
  281. # You can customize it by controlling the various variables inside it.
  282. #
  283. # For a more advanced customization, you can extend the default (see `matrixhookshot_registration_extension_yaml`)
  284. # or completely replace this variable with your own template.
  285. matrix_hookshot_registration_yaml: "{{ lookup('template', 'templates/registration.yml.j2') }}"
  286. matrix_hookshot_registration_extension_yaml: |
  287. # Your custom YAML registration goes here.
  288. # This registration extends the default starting registration (`matrix_hookshot_registration_yaml`).
  289. #
  290. # You can override individual variables from the default registration, or introduce new ones.
  291. #
  292. # If you need something more special, you can take full control by
  293. # completely redefining `matrix_hookshot_registration_yaml`.
  294. matrix_hookshot_registration_extension: "{{ matrix_hookshot_registration_extension_yaml | from_yaml if matrix_hookshot_registration_extension_yaml | from_yaml is mapping else {} }}"
  295. # Holds the final registration (a combination of the default and its extension).
  296. # You most likely don't need to touch this variable. Instead, see `matrix_hookshot_registration_yaml`.
  297. matrix_hookshot_registration: "{{ matrix_hookshot_registration_yaml | from_yaml | combine(matrix_hookshot_registration_extension, recursive=True) }}"