fix(nextcloud): improve upload performance and predictability (#3109)
This commit is contained in:
@@ -37,7 +37,7 @@ sources:
|
|||||||
- https://github.com/nextcloud/docker
|
- https://github.com/nextcloud/docker
|
||||||
- https://github.com/nextcloud/helm
|
- https://github.com/nextcloud/helm
|
||||||
type: application
|
type: application
|
||||||
version: 15.2.2
|
version: 15.2.3
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- cloud
|
- cloud
|
||||||
|
|||||||
@@ -109,6 +109,18 @@ questions:
|
|||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "172.16.0.0/16 127.0.0.1"
|
default: "172.16.0.0/16 127.0.0.1"
|
||||||
|
- variable: PHP_INI_MEMORY_LIMIT
|
||||||
|
label: "PHP_INI_MEMORY_LIMIT"
|
||||||
|
description: "Sets php memory_limit setting"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: "1G"
|
||||||
|
- variable: PHP_UPLOAD_LIMIT
|
||||||
|
label: "PHP_UPLOAD_LIMIT"
|
||||||
|
description: "Sets php upload_max_filesize and post_max_size settings"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: "10G"
|
||||||
- variable: AccessIP
|
- variable: AccessIP
|
||||||
label: "Access IP"
|
label: "Access IP"
|
||||||
description: "Set to the IP-Address used to reach Nextcloud. Most often the Service or NodePort IP (Ensure this is correct!)"
|
description: "Set to the IP-Address used to reach Nextcloud. Most often the Service or NodePort IP (Ensure this is correct!)"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
image:
|
image:
|
||||||
repository: tccr.io/truecharts/nextcloud-fpm
|
repository: tccr.io/truecharts/nextcloud-fpm
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: v24.0.2@sha256:9cd0fb3875d673932d50fa677326b42955a3e8637dc2602b7a827f2afb42eee9
|
tag: v24.0.2@sha256:402be26ad63d87469fd31bed1056a0e51a7a8a6122a15d7804abc592711cbf3a
|
||||||
|
|
||||||
nginxImage:
|
nginxImage:
|
||||||
repository: tccr.io/truecharts/nginx-unprivileged
|
repository: tccr.io/truecharts/nginx-unprivileged
|
||||||
@@ -132,6 +132,10 @@ env:
|
|||||||
# Often the service or nodePort IP
|
# Often the service or nodePort IP
|
||||||
# Defaults to the main serviceName for CI purposes.
|
# Defaults to the main serviceName for CI purposes.
|
||||||
AccessIP:
|
AccessIP:
|
||||||
|
NEXTCLOUD_INIT_HTACCESS: true
|
||||||
|
PHP_INI_MEMORY_LIMIT: 1G
|
||||||
|
PHP_UPLOAD_LIMIT: 10G
|
||||||
|
NEXTCLOUD_CHUNKSIZE: "31457280"
|
||||||
TRUSTED_PROXIES: "172.16.0.0/16 127.0.0.1"
|
TRUSTED_PROXIES: "172.16.0.0/16 127.0.0.1"
|
||||||
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
|
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
|
||||||
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user