[bitnami/redis-cluster] Use SIGTERM on timeout for probes (#15411)

* Use SIGTERM on timeout for probes for redis-cluster (#15055)

Signed-off-by: Air <88528265+air3ijai@users.noreply.github.com>

* Bump chart version 

Signed-off-by: Air <88528265+air3ijai@users.noreply.github.com>

---------

Signed-off-by: Air <88528265+air3ijai@users.noreply.github.com>
This commit is contained in:
Air
2023-03-10 14:49:08 +02:00
committed by GitHub
parent 1adf0ae555
commit 1a9365aa06
2 changed files with 4 additions and 4 deletions

View File

@@ -23,4 +23,4 @@ name: redis-cluster
sources:
- https://github.com/bitnami/containers/tree/main/bitnami/redis
- http://redis.io/
version: 8.3.10
version: 8.3.11

View File

@@ -24,7 +24,7 @@ data:
if [ ! -z "$REDIS_PASSWORD" ]; then export REDISCLI_AUTH=$REDIS_PASSWORD; fi;
{{- end }}
response=$(
timeout -s 3 $1 \
timeout -s 15 $1 \
redis-cli \
-h localhost \
{{- if .Values.tls.enabled }}
@@ -49,7 +49,7 @@ data:
{{- if not .Values.cluster.externalAccess.enabled }}
if [ ! -f "$REDIS_STATUS_FILE" ]; then
response=$(
timeout -s 3 $1 \
timeout -s 15 $1 \
redis-cli \
-h localhost \
{{- if .Values.tls.enabled }}
@@ -86,7 +86,7 @@ data:
if [ ! -z "$REDIS_PASSWORD" ]; then export REDISCLI_AUTH=$REDIS_PASSWORD; fi;
{{- end }}
response=$(
timeout -s 3 $1 \
timeout -s 15 $1 \
redis-cli \
-h localhost \
{{- if .Values.tls.enabled }}