Skip to content

Commit

Permalink
etrip chart 0.7.4, fix redis session handler authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebarbarosie committed Jan 14, 2025
1 parent 9916c98 commit de4b90c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/etrip/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions charts/etrip/templates/configmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 := . }}
Expand Down Expand Up @@ -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 := . }}
Expand Down

0 comments on commit de4b90c

Please sign in to comment.