Skip to content
Snippets Groups Projects
Unverified Commit c46caaba authored by groundhog2k's avatar groundhog2k Committed by GitHub
Browse files

Fixed db update delay (#77)

parent e1934b2d
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ maintainers: ...@@ -8,7 +8,7 @@ maintainers:
- name: groundhog2k - name: groundhog2k
# This is the chart version. # This is the chart version.
version: 0.2.3 version: 0.2.4
# This is the version number of the application being deployed. # This is the version number of the application being deployed.
appVersion: "20.0.2-apache" appVersion: "20.0.2-apache"
......
# Nextcloud # Nextcloud
![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 20.0.2-apache](https://img.shields.io/badge/AppVersion-20.0.2-informational?style=flat-square) ![Version: 0.2.4](https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 20.0.2-apache](https://img.shields.io/badge/AppVersion-20.0.2-informational?style=flat-square)
A Helm chart for Nextcloud on Kubernetes A Helm chart for Nextcloud on Kubernetes
...@@ -161,7 +161,7 @@ $ helm uninstall my-release ...@@ -161,7 +161,7 @@ $ helm uninstall my-release
| settings.admin.name | string | `nil` | Nextcloud administrator user | | settings.admin.name | string | `nil` | Nextcloud administrator user |
| settings.admin.password | string | `nil` | Nextcloud admin user password | | settings.admin.password | string | `nil` | Nextcloud admin user password |
| settings.update | bool | `false` | Enable update | | settings.update | bool | `false` | Enable update |
| settings.databaseUpdateDelay | int | `30` | Delay for database update after nextcloud upgrade | | settings.databaseUpdateDelay | int | `120` | Delay for database update after nextcloud upgrade |
| settings.maxFileUploadSize | string | `64M` | Maximum file upload size | | settings.maxFileUploadSize | string | `64M` | Maximum file upload size |
| settings.memoryLimit | string | `512M` | PHP memory limit | | settings.memoryLimit | string | `512M` | PHP memory limit |
| settings.disableRewriteIP | bool | `false` | Disable rewriting IP address | | settings.disableRewriteIP | bool | `false` | Disable rewriting IP address |
......
...@@ -172,8 +172,8 @@ externalCache: ...@@ -172,8 +172,8 @@ externalCache:
settings: settings:
## Enable update processing (default: false - set to true when "helm upgrade .." is used) ## Enable update processing (default: false - set to true when "helm upgrade .." is used)
update: false update: false
## Delay before database update steps are initiated (default: 30 seconds) ## Delay before database update steps are initiated (default: 120 seconds)
databaseUpdateDelay: 480 databaseUpdateDelay: 120
## Maximum file upload size (default: 64M) ## Maximum file upload size (default: 64M)
maxFileUploadSize: 64M maxFileUploadSize: 64M
## PHP memory limit (default: 512M) ## PHP memory limit (default: 512M)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment