Skip to content

Commit

Permalink
fix: added additional php parameters
Browse files Browse the repository at this point in the history
Signed-off-by: ffais <[email protected]>
  • Loading branch information
ffais committed Nov 12, 2024
1 parent 75c81b3 commit 3742e73
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wordpress/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: wordpress
description: A Helm chart for Wordpress on Kubernetes with NGINX and PHP-FPM
type: application
version: 0.1.3
version: 0.1.4
appVersion: "6.2.2"
dependencies:
- name: mariadb
Expand Down
1 change: 1 addition & 0 deletions wordpress/confs/php/zz-custom-php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ max_execution_time = {{ .Values.php.iniConfigOverride.maxExecutionTime }}
post_max_size = {{ .Values.php.iniConfigOverride.postMaxSize }}
max_input_time = {{ .Values.php.iniConfigOverride.maxInputTime }}
upload_max_filesize = {{ .Values.php.iniConfigOverride.uploadMaxFileSize }}
max_input_vars = {{ .Values.php.iniConfigOverride.maxInputVars }}
1 change: 1 addition & 0 deletions wordpress/templates/wordpress-update-all-cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ spec:
jobTemplate:
spec:
ttlSecondsAfterFinished: {{ .Values.jobs.common.ttlSecondsAfterFinished }}
backoffLimit: 0
template:
metadata:
name: {{ include "wordpress.fullname" (dict "root" . "component" "update-job") }}
Expand Down
3 changes: 2 additions & 1 deletion wordpress/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ php:
memoryLimit: 256M
maxExecutionTime: 300
postMaxSize: 100M
maxInputTime: 90
maxInputTime: 300
maxInputVars: 3000
uploadMaxFileSize: 100M
poolConfigOverride:
pm: "dynamic"
Expand Down

0 comments on commit 3742e73

Please sign in to comment.