diff --git a/changelog/unreleased/service-account-roles.md b/changelog/unreleased/service-account-roles.md new file mode 100644 index 000000000..712e250ae --- /dev/null +++ b/changelog/unreleased/service-account-roles.md @@ -0,0 +1,6 @@ +Enhancement: Service Account roles + +Use a hidden role for service accounts. It will not appear in ListRoles calls but internally handled +by settings service + +https://github.com/owncloud/ocis/pull/8051 diff --git a/services/settings/README.md b/services/settings/README.md index 38cc7eaac..69432c8de 100644 --- a/services/settings/README.md +++ b/services/settings/README.md @@ -15,10 +15,9 @@ As an example, user profile settings that can be changed in the Web UI must be p 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`: This backend persists the settings data in a directory on the local filesystem. +* `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 should be therefore considered - deprecated. + multiple intances of the `settings` service in a scale-out deployment and was therefore deprecated.