| @@ -104,12 +104,12 @@ To save disk space in `/tmp`, the dump file is gzipped on the fly at the expense | |||||
| PostgreSQL can be [tuned](https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server) to make it run faster. This is done by passing extra arguments to the Postgres process. | PostgreSQL can be [tuned](https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server) to make it run faster. This is done by passing extra arguments to the Postgres process. | ||||
| The [Postgres Ansible role](https://github.com/mother-of-all-self-hosting/ansible-role-postgres) **already does some tuning by default**, which matches the [tuning logic](https://github.com/le0pard/pgtune/blob/master/src/features/configuration/configurationSlice.js) done by websites like https://pgtune.leopard.in.ua/. You can manually influence some of the tuning variables. These parameters (variables) are injected via the `postgres_postgres_process_extra_arguments_auto` variable. | |||||
| The [Postgres Ansible role](https://github.com/mother-of-all-self-hosting/ansible-role-postgres) **already does some tuning by default**, which matches the [tuning logic](https://github.com/le0pard/pgtune/blob/master/src/features/configuration/configurationSlice.js) done by websites like https://pgtune.leopard.in.ua/. You can manually influence some of the tuning variables. These parameters (variables) are injected via the `postgres_postgres_process_extra_arguments_default` variable. | |||||
| Most users should be fine with the automatically-done tuning. However, you may wish to: | Most users should be fine with the automatically-done tuning. However, you may wish to: | ||||
| - **adjust the automatically-determined tuning parameters manually**: change the values for the tuning variables defined in the Postgres role's [default configuration file](https://github.com/mother-of-all-self-hosting/ansible-role-postgres/blob/main/defaults/main.yml) (see `postgres_max_connections`, `postgres_data_storage` etc). These variables are ultimately passed to Postgres via a `postgres_postgres_process_extra_arguments_auto` variable | |||||
| - **adjust the automatically-determined tuning parameters manually**: change the values for the tuning variables defined in the Postgres role's [default configuration file](https://github.com/mother-of-all-self-hosting/ansible-role-postgres/blob/main/defaults/main.yml) (see `postgres_max_connections`, `postgres_data_storage` etc). These variables are ultimately passed to Postgres via a `postgres_postgres_process_extra_arguments_default` variable | |||||
| - **turn automatically-performed tuning off**: override it like this: `postgres_postgres_process_extra_arguments_auto: []` | |||||
| - **turn automatically-performed tuning off**: override it like this: `postgres_postgres_process_extra_arguments_default: []` | |||||
| - **add additional tuning parameters**: define your additional Postgres configuration parameters in `postgres_postgres_process_extra_arguments_custom`. See `postgres_postgres_process_extra_arguments_auto` defined in the Postgres role's [default configuration file](https://github.com/mother-of-all-self-hosting/ansible-role-postgres/blob/main/defaults/main.yml) for inspiration | |||||
| - **add additional tuning parameters**: define your additional Postgres configuration parameters in `postgres_postgres_process_extra_arguments_custom`. See `postgres_postgres_process_extra_arguments_default` defined in the Postgres role's [default configuration file](https://github.com/mother-of-all-self-hosting/ansible-role-postgres/blob/main/defaults/main.yml) for inspiration | |||||
| @@ -15,7 +15,7 @@ mdurl==0.1.2 | |||||
| myst-parser==4.0.1 | myst-parser==4.0.1 | ||||
| packaging==25.0 | packaging==25.0 | ||||
| Pygments==2.19.2 | Pygments==2.19.2 | ||||
| PyYAML==6.0.2 | |||||
| PyYAML==6.0.3 | |||||
| requests==2.32.5 | requests==2.32.5 | ||||
| setuptools==80.9.0 | setuptools==80.9.0 | ||||
| snowballstemmer==3.0.1 | snowballstemmer==3.0.1 | ||||
| @@ -11,7 +11,7 @@ | |||||
| matrix_alertmanager_receiver_enabled: true | matrix_alertmanager_receiver_enabled: true | ||||
| # renovate: datasource=docker depName=docker.io/metio/matrix-alertmanager-receiver | # renovate: datasource=docker depName=docker.io/metio/matrix-alertmanager-receiver | ||||
| matrix_alertmanager_receiver_version: 2025.9.17 | |||||
| matrix_alertmanager_receiver_version: 2025.9.24 | |||||
| matrix_alertmanager_receiver_scheme: https | matrix_alertmanager_receiver_scheme: https | ||||
| @@ -168,7 +168,7 @@ matrix_alertmanager_receiver_config_templating_firing_template: |- | |||||
| {{ else if eq .Alert.Labels.severity "critical" }} | {{ else if eq .Alert.Labels.severity "critical" }} | ||||
| {{ $color = "red" }} | {{ $color = "red" }} | ||||
| {{ end }} | {{ end }} | ||||
| {{ if eq .Alert.status "resolved" }} | |||||
| {{ if eq .Alert.Status "resolved" }} | |||||
| {{ $color = "green" }} | {{ $color = "green" }} | ||||
| {{ end }} | {{ end }} | ||||
| <p> | <p> | ||||
| @@ -13,7 +13,7 @@ matrix_steam_bridge_container_image_self_build_repo: "https://github.com/jasonla | |||||
| matrix_steam_bridge_container_image_self_build_repo_version: "{{ 'main' if matrix_steam_bridge_version == 'latest' else matrix_steam_bridge_version }}" | matrix_steam_bridge_container_image_self_build_repo_version: "{{ 'main' if matrix_steam_bridge_version == 'latest' else matrix_steam_bridge_version }}" | ||||
| # renovate: datasource=docker depName=ghcr.io/jasonlaguidice/matrix-steam-bridge | # renovate: datasource=docker depName=ghcr.io/jasonlaguidice/matrix-steam-bridge | ||||
| matrix_steam_bridge_version: 1.0.3 | |||||
| matrix_steam_bridge_version: 1.0.4 | |||||
| matrix_steam_bridge_docker_image: "{{ matrix_steam_bridge_docker_image_registry_prefix }}jasonlaguidice/matrix-steam-bridge:{{ matrix_steam_bridge_version }}" | matrix_steam_bridge_docker_image: "{{ matrix_steam_bridge_docker_image_registry_prefix }}jasonlaguidice/matrix-steam-bridge:{{ matrix_steam_bridge_version }}" | ||||
| matrix_steam_bridge_docker_image_registry_prefix: "{{ 'localhost/' if matrix_steam_bridge_container_image_self_build else matrix_steam_bridge_docker_image_registry_prefix_upstream }}" | matrix_steam_bridge_docker_image_registry_prefix: "{{ 'localhost/' if matrix_steam_bridge_container_image_self_build else matrix_steam_bridge_docker_image_registry_prefix_upstream }}" | ||||
| matrix_steam_bridge_docker_image_registry_prefix_upstream: "{{ matrix_steam_bridge_docker_image_registry_prefix_upstream_default }}" | matrix_steam_bridge_docker_image_registry_prefix_upstream: "{{ matrix_steam_bridge_docker_image_registry_prefix_upstream_default }}" | ||||
| @@ -21,7 +21,7 @@ matrix_element_call_enabled: false | |||||
| matrix_rtc_enabled: "{{ matrix_element_call_enabled }}" | matrix_rtc_enabled: "{{ matrix_element_call_enabled }}" | ||||
| # renovate: datasource=docker depName=ghcr.io/element-hq/element-call | # renovate: datasource=docker depName=ghcr.io/element-hq/element-call | ||||
| matrix_element_call_version: v0.15.0 | |||||
| matrix_element_call_version: v0.16.0 | |||||
| matrix_element_call_scheme: https | matrix_element_call_scheme: https | ||||
| @@ -16,7 +16,7 @@ matrix_synapse_enabled: true | |||||
| matrix_synapse_github_org_and_repo: element-hq/synapse | matrix_synapse_github_org_and_repo: element-hq/synapse | ||||
| # renovate: datasource=docker depName=ghcr.io/element-hq/synapse | # renovate: datasource=docker depName=ghcr.io/element-hq/synapse | ||||
| matrix_synapse_version: v1.138.0 | |||||
| matrix_synapse_version: v1.138.2 | |||||
| matrix_synapse_username: '' | matrix_synapse_username: '' | ||||
| matrix_synapse_uid: '' | matrix_synapse_uid: '' | ||||