Skip to content
Closed
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

## 13.0.4 (2025-08-23)
## 13.0.6 (2025-09-08)

* [bitnami/redis-cluster] :zap: :arrow_up: Update dependency references ([#36172](https://github.com/bitnami/charts/pull/36172))
* [bitnami/redis-cluster] Fix service binding password mismatch (#15626) ([#36230](https://github.com/bitnami/charts/pull/36230))

## <small>13.0.4 (2025-08-23)</small>

* [bitnami/redis-cluster] :zap: :arrow_up: Update dependency references (#36172) ([2060aa9](https://github.com/bitnami/charts/commit/2060aa94b82bd7e0b030a310acf5c45f3b3dceda)), closes [#36172](https://github.com/bitnami/charts/issues/36172)

## <small>13.0.3 (2025-08-18)</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 @@ -34,4 +34,4 @@ maintainers:
name: redis-cluster
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/redis-cluster
version: 13.0.5
version: 13.0.6
4 changes: 3 additions & 1 deletion bitnami/redis-cluster/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ Return Redis&reg; password
{{- else if not (empty .Values.password) -}}
{{- .Values.password -}}
{{- else -}}
{{- randAlphaNum 10 -}}
{{- $password_tmp := randAlphaNum 10 -}}
{{- $_ := set .Values "password" $password_tmp -}}
{{- .Values.password -}}
{{- end -}}
{{- end -}}

Expand Down
Loading