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
In fluentd, volume mounts for configuration files (e.g. fluent.conf, configMapConfigs, fileConfigs) set the default mode to 0777. Kubernetes restricts configmaps to read-only, so it actually gets mounted at 0555. There is no reason to have the executable permission set on these files.
The default mode should be changed to 0444.
The text was updated successfully, but these errors were encountered:
The default for defaultmode is 0644. Since configmaps are read-only anyways, there would be an effective permission of 0444. So, I suggest we just remove the defaultmode completely and let the default take effect.
In fluentd, volume mounts for configuration files (e.g. fluent.conf, configMapConfigs, fileConfigs) set the default mode to 0777. Kubernetes restricts configmaps to read-only, so it actually gets mounted at 0555. There is no reason to have the executable permission set on these files.
The default mode should be changed to 0444.
The text was updated successfully, but these errors were encountered: