We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to deploy NextCloud using image library/nextcloud:22.1.0-apache. My NextCloud folder is mounted in an NFS volume.
library/nextcloud:22.1.0-apache
When deploying, the entrypoint script hangs on step Initializing nextcloud 22.1.0.1.
Initializing nextcloud 22.1.0.1
Using strace I found that it starts to hang when calling rsync. My understanding is that rsync has very poor performance when used over NFS.
strace
rsync
entrypoint.sh
The text was updated successfully, but these errors were encountered:
I enabled a 3 minutes startup probe (it was disabled by default): https://github.com/nextcloud/helm/blob/master/charts/nextcloud/values.yaml#L370 It gave sufficient time for the app to start.
Sorry, something went wrong.
No branches or pull requests
Hello,
I'm trying to deploy NextCloud using image
library/nextcloud:22.1.0-apache
. My NextCloud folder is mounted in an NFS volume.When deploying, the entrypoint script hangs on step
Initializing nextcloud 22.1.0.1
.Using
strace
I found that it starts to hang when callingrsync
. My understanding is thatrsync
has very poor performance when used over NFS.entrypoint.sh
be updated to get rid ofrsync
or maybe updated to only transfer a few large files instead of lots of small files?The text was updated successfully, but these errors were encountered: