Skip to content

Commit 3742e73

Browse files
committed
fix: added additional php parameters
Signed-off-by: ffais <[email protected]>
1 parent 75c81b3 commit 3742e73

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

wordpress/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: wordpress
33
description: A Helm chart for Wordpress on Kubernetes with NGINX and PHP-FPM
44
type: application
5-
version: 0.1.3
5+
version: 0.1.4
66
appVersion: "6.2.2"
77
dependencies:
88
- name: mariadb

wordpress/confs/php/zz-custom-php.ini

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ max_execution_time = {{ .Values.php.iniConfigOverride.maxExecutionTime }}
33
post_max_size = {{ .Values.php.iniConfigOverride.postMaxSize }}
44
max_input_time = {{ .Values.php.iniConfigOverride.maxInputTime }}
55
upload_max_filesize = {{ .Values.php.iniConfigOverride.uploadMaxFileSize }}
6+
max_input_vars = {{ .Values.php.iniConfigOverride.maxInputVars }}

wordpress/templates/wordpress-update-all-cronjob.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ spec:
1010
jobTemplate:
1111
spec:
1212
ttlSecondsAfterFinished: {{ .Values.jobs.common.ttlSecondsAfterFinished }}
13+
backoffLimit: 0
1314
template:
1415
metadata:
1516
name: {{ include "wordpress.fullname" (dict "root" . "component" "update-job") }}

wordpress/values.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ php:
126126
memoryLimit: 256M
127127
maxExecutionTime: 300
128128
postMaxSize: 100M
129-
maxInputTime: 90
129+
maxInputTime: 300
130+
maxInputVars: 3000
130131
uploadMaxFileSize: 100M
131132
poolConfigOverride:
132133
pm: "dynamic"

0 commit comments

Comments
 (0)