From ab4af9a75bd14b0216587f5d7959bd760325e78b Mon Sep 17 00:00:00 2001 From: Lars Scheibling Date: Wed, 26 Apr 2023 10:37:08 +0200 Subject: [PATCH] Update Chart/templates/configmap.yaml, Chart/Chart.yaml, .gitlab-ci.yml --- .gitlab-ci.yml | 2 +- Chart/Chart.yaml | 2 +- Chart/templates/configmap.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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 }}