Describe the bug
The PosixFS storage driver is well documented in the docs repository, but the code documentation in config.go doesn't list it as a supported value, leading to confusion.
Steps to reproduce
- Check
services/storage-users/pkg/config/config.go:27
- Read the
STORAGE_USERS_DRIVER description
- Notice that
'posix' is not listed in supported values
- Check
defaultconfig.go:94 - the default is actually 'posix'
Expected behavior
The description should list all supported storage drivers including 'posix', especially since it's the default driver.
Actual behavior
Current description:
desc:"The storage driver which should be used by the service. Defaults to 'decomposed',
Supported values are: 'decomposed', 'decomposeds3' and 'owncloudsql'."
- Missing
'posix' in the supported values list
- Says default is 'decomposed' but it's actually 'posix'
Setup
This is a documentation issue in the code, no specific setup required.
Additional context
cc @dschmidt @teo - Would this clarification help with the issues you encountered in the Helm PR?
Describe the bug
The PosixFS storage driver is well documented in the docs repository, but the code documentation in
config.godoesn't list it as a supported value, leading to confusion.Steps to reproduce
services/storage-users/pkg/config/config.go:27STORAGE_USERS_DRIVERdescription'posix'is not listed in supported valuesdefaultconfig.go:94- the default is actually'posix'Expected behavior
The description should list all supported storage drivers including
'posix', especially since it's the default driver.Actual behavior
Current description:
'posix'in the supported values listSetup
This is a documentation issue in the code, no specific setup required.
Additional context
cc @dschmidt @teo - Would this clarification help with the issues you encountered in the Helm PR?