diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 10015aa..ade64ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - HELM_CHART_VERSION: "0.8.7" + HELM_CHART_VERSION: "0.8.8" stages: - deploy diff --git a/Chart/Chart.yaml b/Chart/Chart.yaml index 0d7ae6e..b8eb50d 100644 --- a/Chart/Chart.yaml +++ b/Chart/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: cloudypress description: Helm chart to deploy Wordpress backed by PHP-CLI and Nginx Unit type: application -version: "0.8.7" +version: "0.8.8" appVersion: "6.2.0" diff --git a/Chart/templates/configmap.yaml b/Chart/templates/configmap.yaml index 8ed6d5b..2cf0c19 100644 --- a/Chart/templates/configmap.yaml +++ b/Chart/templates/configmap.yaml @@ -151,13 +151,13 @@ data: {{- if and .Values.global .Values.global.php }} "expose_php": "{{ .Values.global.php.exposePHP | default "Off" }}", "short_open_tag": "{{ .Values.global.php.shortOpenTag | default "Off" }}", - "disable_functions": "{{ .Values.global.php.disableFunctions | default "exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,show_source" }}", + "disable_functions": "{{ .Values.global.php.disableFunctions | default "exec,passthru,shell_exec,system,proc_open,popen,show_source" }}", "log_errors": "{{ .Values.global.php.logErrors | default "On" }}", "date.timezone": "{{ .Values.customer.timezone | default "Europe/Stockholm" }}", {{- else }} "expose_php": "Off", "short_open_tag": "Off", - "disable_functions": "exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,show_source", + "disable_functions": "exec,passthru,shell_exec,system,proc_open,popen,show_source", "log_errors": "On", {{- end }} {{- if .Values.global.php.adminValues }}