2023-02-20 21:34:16 +00:00
|
|
|
---
|
|
|
|
# rageshake is a issue submission service from matrix.org
|
|
|
|
# Project source code URL: https://github.com/matrix-org/rageshake/
|
|
|
|
|
2023-02-25 10:20:25 +00:00
|
|
|
matrix_rageshake_enabled: true
|
2023-02-20 21:34:16 +00:00
|
|
|
|
2023-02-25 10:20:09 +00:00
|
|
|
# There are no stable container image tags yet.
|
|
|
|
# See: https://github.com/matrix-org/rageshake/issues/69
|
2023-02-20 21:34:16 +00:00
|
|
|
matrix_rageshake_version: "master"
|
2023-02-25 11:01:11 +00:00
|
|
|
matrix_rageshake_container_image: "{{ matrix_rageshake_container_image_name_prefix }}matrix-org/rageshake:{{ matrix_rageshake_version }}"
|
|
|
|
matrix_rageshake_container_image_name_prefix: "{{ 'localhost/' if matrix_rageshake_container_image_self_build else 'ghcr.io/' }}"
|
|
|
|
matrix_rageshake_container_image_force_pull: "{{ matrix_rageshake_container_image.endswith(':master') }}"
|
2023-02-20 21:34:16 +00:00
|
|
|
|
|
|
|
matrix_rageshake_base_path: "{{ matrix_base_data_path }}/rageshake"
|
|
|
|
matrix_rageshake_config_path: "{{ matrix_rageshake_base_path }}/config"
|
|
|
|
matrix_rageshake_data_path: "{{ matrix_rageshake_base_path }}/data"
|
|
|
|
|
2023-02-25 10:59:56 +00:00
|
|
|
matrix_rageshake_container_image_self_build: false
|
2023-02-25 11:01:11 +00:00
|
|
|
matrix_rageshake_container_repo: "https://github.com/matrix-org/rageshake/"
|
|
|
|
matrix_rageshake_container_repo_version: "{{ 'master' if matrix_rageshake_version == 'master' else matrix_rageshake_version }}"
|
2023-02-25 11:01:38 +00:00
|
|
|
matrix_rageshake_container_src_files_path: "{{ matrix_rageshake_base_path }}/container-src"
|
2023-02-25 10:59:56 +00:00
|
|
|
|
2023-02-20 21:34:16 +00:00
|
|
|
# A list of extra arguments to pass to the container
|
|
|
|
matrix_rageshake_container_extra_arguments: []
|
|
|
|
|
|
|
|
# List of systemd services that matrix-rageshake.service depends on
|
|
|
|
matrix_rageshake_systemd_required_services_list: ["docker.service"]
|
|
|
|
|
|
|
|
# List of systemd services that matrix-rageshake.service wants
|
|
|
|
matrix_rageshake_systemd_wanted_services_list: []
|
|
|
|
|
2023-02-25 10:23:07 +00:00
|
|
|
matrix_rageshake_config_api_prefix: "https://{{ matrix_server_fqn_rageshake }}/api/"
|
|
|
|
|
2023-02-25 10:29:22 +00:00
|
|
|
# Default Rageshake configuration template which covers the generic use case.
|
|
|
|
# You can customize it by controlling the various variables inside it.
|
2023-02-20 21:34:16 +00:00
|
|
|
#
|
2023-02-25 10:29:22 +00:00
|
|
|
# For a more advanced customization, you can extend the default (see `matrix_rageshake_configuration_extension_yaml`)
|
|
|
|
# or completely replace this variable with your own template.
|
|
|
|
matrix_rageshake_configuration_yaml: "{{ lookup('template', 'templates/config.yml.j2') }}"
|
|
|
|
|
|
|
|
matrix_rageshake_configuration_extension_yaml: |
|
|
|
|
# Your custom YAML configuration for Synapse goes here.
|
|
|
|
# This configuration extends the default starting configuration (`matrix_rageshake_configuration_yaml`).
|
|
|
|
#
|
|
|
|
# You can override individual variables from the default configuration, or introduce new ones.
|
|
|
|
#
|
|
|
|
# If you need something more special, you can take full control by
|
|
|
|
# completely redefining `matrix_rageshake_configuration_yaml`.
|
|
|
|
#
|
|
|
|
# Example configuration extension follows:
|
|
|
|
#
|
|
|
|
# github_project_mappings:
|
|
|
|
# my-app: octocat/HelloWorld
|
|
|
|
|
|
|
|
matrix_rageshake_configuration_extension: "{{ matrix_rageshake_configuration_extension_yaml | from_yaml if matrix_rageshake_configuration_extension_yaml | from_yaml is mapping else {} }}"
|
|
|
|
|
|
|
|
# Holds the final Synapse configuration (a combination of the default and its extension).
|
|
|
|
# You most likely don't need to touch this variable. Instead, see `matrix_rageshake_configuration_yaml`.
|
|
|
|
matrix_rageshake_configuration: "{{ matrix_rageshake_configuration_yaml | from_yaml | combine(matrix_rageshake_configuration_extension, recursive=True) }}"
|