[bitnami/redis] bugfix: use TLS port on readiness probes when TLS is enabled (#36463)

This commit is contained in:
Juan Ariza Toledano
2026-02-12 13:51:52 +01:00
committed by GitHub
parent 8caeb0c818
commit e3296a8314
3 changed files with 4 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
# Changelog
## 23.1.0 (2026-02-12)
## 23.1.1 (2026-02-12)
* [bitnami/redis] feat: add support for sync checks on replica nodes with sentinel ([#36461](https://github.com/bitnami/charts/pull/36461))
* [bitnami/redis] bugfix: use TLS port on readiness probes when TLS is enabled ([#36463](https://github.com/bitnami/charts/pull/36463))
## <small>23.0.5 (2025-12-11)</small>

View File

@@ -38,4 +38,4 @@ maintainers:
name: redis
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/redis
version: 23.1.0
version: 23.1.1

View File

@@ -19,7 +19,7 @@ data:
timeout=$1
run_redis_command() {
{{- if .Values.tls.enabled }}
local args=("--tls" "-p" "$REDIS_PORT")
local args=("--tls" "-p" "$REDIS_TLS_PORT")
{{- if not (empty (include "redis.tlsCACert" .)) }}
args+=("--cacert" {{ template "redis.tlsCACert" . }})
{{- end }}