diff --git a/changelog/unreleased/remove-deprecated-settings-backend.md b/changelog/unreleased/remove-deprecated-settings-backend.md new file mode 100644 index 0000000000..81d333176e --- /dev/null +++ b/changelog/unreleased/remove-deprecated-settings-backend.md @@ -0,0 +1,6 @@ +Change: The `filesystem` backend for the settings service has been removed + +The only remaining backend for the settings service is `metadata`, which has been the +default backend since ocis 2.0 + +https://github.com/owncloud/ocis/pull/9138 diff --git a/services/settings/README.md b/services/settings/README.md index 69432c8de8..6567231610 100644 --- a/services/settings/README.md +++ b/services/settings/README.md @@ -12,12 +12,7 @@ The settings service is currently used for managing the: As an example, user profile settings that can be changed in the Web UI must be persistent. -The settings service supports two different backends for persisting the data. The backend can be set via the `SETTINGS_STORE_TYPE` environment variable. Supported values are: - -* `metadata`: The default. This backend persists the settings data via the `storage-system` service. -* `filesystem`: (deprecated) This backend persists the settings data in a directory on the local filesystem. - The directory can be configured with `SETTINGS_DATA_PATH`. This backend is **not** suitable for running - multiple intances of the `settings` service in a scale-out deployment and was therefore deprecated. +The settings service persists the settings data via the `storage-system` service.