Skip to content

Commit 35dff20

Browse files
authored
[stable/redis-ha] Add haproxy tunnel timeout setting (#355)
* Add haproxy timeout tunnel setting Signed-off-by: Morten Larsen <mortenl41@gmail.com> * Bump chart version Signed-off-by: Morten Larsen <mortenl41@gmail.com> --------- Signed-off-by: Morten Larsen <mortenl41@gmail.com>
1 parent 18708d2 commit 35dff20

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

charts/redis-ha/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords:
55
- redis
66
- keyvalue
77
- database
8-
version: 4.35.5
8+
version: 4.35.6
99
appVersion: 8.2.2
1010
description: This Helm chart provides a highly available Redis implementation with a master/slave configuration and uses Sentinel sidecars for failover management
1111
icon: https://img.icons8.com/external-tal-revivo-shadow-tal-revivo/24/external-redis-an-in-memory-data-structure-project-implementing-a-distributed-logo-shadow-tal-revivo.png

charts/redis-ha/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ The following table lists the configurable parameters of the Redis chart and the
308308
| `haproxy.timeout.client` | haproxy.cfg `timeout client` setting | string | `"330s"` |
309309
| `haproxy.timeout.connect` | haproxy.cfg `timeout connect` setting | string | `"4s"` |
310310
| `haproxy.timeout.server` | haproxy.cfg `timeout server` setting | string | `"330s"` |
311+
| `haproxy.timeout.tunnel` | haproxy.cfg `timeout tunnel` setting | string | `"1h"` |
311312
| `haproxy.tls` | Enable TLS termination on HAproxy, This will create a volume mount | object | `{"certMountPath":"/tmp/","enabled":false,"keyName":null,"secretName":""}` |
312313
| `haproxy.tls.certMountPath` | Path to mount the secret that contains the certificates. haproxy | string | `"/tmp/"` |
313314
| `haproxy.tls.enabled` | If "true" this will enable TLS termination on haproxy | bool | `false` |

charts/redis-ha/templates/_configs.tpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,7 @@
549549
timeout server {{ .Values.haproxy.timeout.server }}
550550
timeout client {{ .Values.haproxy.timeout.client }}
551551
timeout check {{ .Values.haproxy.timeout.check }}
552+
timeout tunnel {{ .Values.haproxy.timeout.tunnel }}
552553

553554
listen health_check_http_url
554555
bind {{ if .Values.haproxy.IPv6.enabled }}[::]{{ end }}:8888 {{ if .Values.haproxy.IPv6.enabled }}v4v6{{ end }}

charts/redis-ha/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ haproxy:
248248
client: 330s
249249
# -- haproxy.cfg `timeout check` setting
250250
check: 2s
251+
# -- haproxy.cfg `timeout tunnel` setting
252+
tunnel: 1h
251253
# -- haproxy.cfg `check inter` setting
252254
checkInterval: 1s
253255
# -- haproxy.cfg `check fall` setting

0 commit comments

Comments
 (0)