You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, Fluentd users had to use the --umask command-line argument
to set the umask, which was inconvenient for service deployments and
containerized environments. This commit introduces a umask option in
the Fluentd system configuration, allowing users to define umask
directly within fluent.conf.
Additionally, this commit fixes test cases related to umask handling:
- The previous tests incorrectly asserted the expected umask values.
- Adjusted tests to ensure that new file permissions are correctly
applied according to the configured umask.
- Added a test to verify that an invalid umask value raises the expected
Fluent::ConfigError.
Fixesfluent#4816
Release Note:
- Added umask option to Fluentd system configuration.
Signed-off-by: kushynoda <[email protected]>
Is your feature request related to a problem? Please describe.
Some users need to change
umask
.Example:
Currently, we have to use the command line option
--umask
.It is inconvenient for the service or container image.
Describe the solution you'd like
Add umask option to the System config.
Describe alternatives you've considered
Without this option in System config, we can customize the command line options like #4810 (comment), but it is inconvenient.
Additional context
No response
The text was updated successfully, but these errors were encountered: