Skip to content

Commit

Permalink
set empty list as default in helm values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
swedgwood committed Jul 19, 2023
1 parent c568a17 commit 10960d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/dendrite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Create a folder `appservices` and place your configurations in there. The confi
| dendrite_config.global.dns_cache.cache_lifetime | string | `"10m"` | Duration for how long DNS cache items should be considered valid ([see time.ParseDuration](https://pkg.go.dev/time#ParseDuration) for more) |
| dendrite_config.global.profiling.enabled | bool | `false` | Enable pprof. You will need to manually create a port forwarding to the deployment to access PPROF, as it will only listen on localhost and the defined port. e.g. `kubectl port-forward deployments/dendrite 65432:65432` |
| dendrite_config.global.profiling.port | int | `65432` | pprof port, if enabled |
| dendrite_config.mscs | object | `{"mscs":null}` | Configuration for experimental MSC's. (Valid values are: msc2836) |
| dendrite_config.mscs | object | `{"mscs":[]}` | Configuration for experimental MSC's. (Valid values are: msc2836) |
| dendrite_config.app_service_api.disable_tls_validation | bool | `false` | Disable the validation of TLS certificates of appservices. This is not recommended in production since it may allow appservice traffic to be sent to an insecure endpoint. |
| dendrite_config.app_service_api.config_files | list | `[]` | Appservice config files to load on startup. (**NOTE**: This is overriden by Helm, if a folder `./appservices/` exists) |
| dendrite_config.client_api.registration_disabled | bool | `true` | Prevents new users from being able to register on this homeserver, except when using the registration shared secret below. |
Expand Down
2 changes: 1 addition & 1 deletion helm/dendrite/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ dendrite_config:

# -- Configuration for experimental MSC's. (Valid values are: msc2836)
mscs:
mscs:
mscs: []
# A list of enabled MSC's
# Currently valid values are:
# - msc2836 (Threading, see https://github.com/matrix-org/matrix-doc/pull/2836)
Expand Down

0 comments on commit 10960d3

Please sign in to comment.