From de4b90cde443f351e94be80df9da9a15c119c62f Mon Sep 17 00:00:00 2001 From: George Barbarosie Date: Tue, 14 Jan 2025 10:17:08 +0000 Subject: [PATCH] etrip chart 0.7.4, fix redis session handler authentication --- charts/etrip/Chart.yaml | 2 +- charts/etrip/templates/configmap.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/etrip/Chart.yaml b/charts/etrip/Chart.yaml index c3591b3..119f30b 100644 --- a/charts/etrip/Chart.yaml +++ b/charts/etrip/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v1 name: etrip description: eTrip PHP Helm chart type: application -version: 0.7.3 +version: 0.7.4 appVersion: 6.5.35 diff --git a/charts/etrip/templates/configmap.yml b/charts/etrip/templates/configmap.yml index c9ec193..afa97d5 100644 --- a/charts/etrip/templates/configmap.yml +++ b/charts/etrip/templates/configmap.yml @@ -288,7 +288,7 @@ data: clear_env = no {{- if and $.Values.etrip.use_redis (not (eq $key "ws") ) (not (eq $key "ws_prio") ) }} php_value[session.save_handler] = redis - php_value[session.save_path] = tcp://{{ $.Release.Name }}-redis:6379?auth%3D${REDIS_SECRET} + php_value[session.save_path] = "tcp://{{ $.Release.Name }}-redis:6379?auth=${REDIS_SECRET}" {{- end }} {{- with $val.phpValues -}} {{- range $pkey, $pval := . }} @@ -317,7 +317,7 @@ data: clear_env = no {{- if $.Values.etrip.use_redis }} php_value[session.save_handler] = redis - php_value[session.save_path] = tcp://{{ $.Release.Name }}-redis:6379?auth%3D${REDIS_SECRET} + php_value[session.save_path] = "tcp://{{ $.Release.Name }}-redis:6379?auth=${REDIS_SECRET}" {{- end }} {{- with $val.phpValues -}} {{- range $pkey, $pval := . }}