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
The main problem is in the -type f filter because Kubernetes mounts ConfigMap as a directory with symlinks, not files, thus leading to to incapability of the find utility to find scripts because of the -type f filter.
This issue can be fixed by changing the -type f filter to -type f,l. I tested the entrypoint.sh that includes this change - it working as expected.
@daluca Yep, you are right, that was already discussed here #2115 (comment), and the latest fix variant should work with Alpine. PR is waiting for review and approval.
In PR #2095, the next line was added:
docker/docker-entrypoint.sh
Line 35 in d1dbc77
The main problem is in the
-type f
filter because Kubernetes mounts ConfigMap as a directory with symlinks, not files, thus leading to to incapability of thefind
utility to find scripts because of the-type f
filter.This issue can be fixed by changing the
-type f
filter to-type f,l
. I tested theentrypoint.sh
that includes this change - it working as expected.Nextcloud deployment.yaml
/docker-entrypoint-hooks.d/post-installation content
The text was updated successfully, but these errors were encountered: