mirror of
https://github.com/bitnami/charts.git
synced 2026-03-27 07:17:25 +08:00
[bitnami/redis] bugfix: use TLS port on readiness probes when TLS is enabled (#36463)
This commit is contained in:
committed by
GitHub
parent
8caeb0c818
commit
e3296a8314
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user