Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions bitnami/redis-cluster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 11.5.3 (2025-04-24)
## 11.5.4 (2025-04-29)

* [bitnami/redis-cluster] Release 11.5.3 ([#33156](https://github.com/bitnami/charts/pull/33156))
* [bitnami/redis-cluster] Switch shell from /bin/sh to /bin/bash to improve process handling ([#33250](https://github.com/bitnami/charts/pull/33250))

## <small>11.5.3 (2025-04-24)</small>

* [bitnami/redis-cluster] Release 11.5.3 (#33156) ([44c8d3c](https://github.com/bitnami/charts/commit/44c8d3c58a252e4a292fbf5f22febe1f8897c648)), closes [#33156](https://github.com/bitnami/charts/issues/33156)

## <small>11.5.2 (2025-04-21)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/redis-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ maintainers:
name: redis-cluster
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/redis-cluster
version: 11.5.3
version: 11.5.4
8 changes: 4 additions & 4 deletions bitnami/redis-cluster/templates/redis-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ spec:
failureThreshold: {{ .Values.redis.livenessProbe.failureThreshold }}
exec:
command:
- sh
- -c
- /bin/bash
- -ec
- /scripts/ping_liveness_local.sh {{ .Values.redis.livenessProbe.timeoutSeconds }}
{{- end }}
{{- if .Values.redis.customReadinessProbe }}
Expand All @@ -252,8 +252,8 @@ spec:
failureThreshold: {{ .Values.redis.readinessProbe.failureThreshold }}
exec:
command:
- sh
- -c
- /bin/bash
- -ec
- /scripts/ping_readiness_local.sh {{ .Values.redis.readinessProbe.timeoutSeconds }}
{{- end }}
{{- if .Values.redis.customStartupProbe }}
Expand Down
4 changes: 2 additions & 2 deletions bitnami/redis-cluster/templates/scripts-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
{{- end }}
data:
ping_readiness_local.sh: |-
#!/bin/sh
#!/bin/bash
set -e

REDIS_STATUS_FILE=/tmp/.redis_cluster_check
Expand Down Expand Up @@ -75,7 +75,7 @@ data:
fi
{{- end }}
ping_liveness_local.sh: |-
#!/bin/sh
#!/bin/bash
set -e

{{- if .Values.usePassword }}
Expand Down
Loading