From 71a2db0e116209eed13d68ffa84b8668338756fa Mon Sep 17 00:00:00 2001 From: Eli <1349694179@qq.com> Date: Thu, 10 Aug 2023 16:24:40 +0800 Subject: [PATCH] [bitnami/redis] fix redis sentinel start up (#18321) Signed-off-by: Luo, Xinyu <1349694179@qq.com> --- bitnami/redis/Chart.yaml | 2 +- bitnami/redis/README.md | 2 +- bitnami/redis/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitnami/redis/Chart.yaml b/bitnami/redis/Chart.yaml index dadcfe4023..699e986078 100644 --- a/bitnami/redis/Chart.yaml +++ b/bitnami/redis/Chart.yaml @@ -25,4 +25,4 @@ maintainers: name: redis sources: - https://github.com/bitnami/charts/tree/main/bitnami/redis -version: 17.15.0 +version: 17.15.1 diff --git a/bitnami/redis/README.md b/bitnami/redis/README.md index 0e43d41fb2..beedae248b 100644 --- a/bitnami/redis/README.md +++ b/bitnami/redis/README.md @@ -353,7 +353,7 @@ The command removes all the Kubernetes components associated with the chart and | `sentinel.annotations` | Additional custom annotations for Redis® Sentinel resource | `{}` | | `sentinel.masterSet` | Master set name | `mymaster` | | `sentinel.quorum` | Sentinel Quorum | `2` | -| `sentinel.getMasterTimeout` | Amount of time to allow before get_sentinel_master_info() times out. | `200` | +| `sentinel.getMasterTimeout` | Amount of time to allow before get_sentinel_master_info() times out. | `99` | | `sentinel.automateClusterRecovery` | Automate cluster recovery in cases where the last replica is not considered a good replica and Sentinel won't automatically failover to it. | `false` | | `sentinel.redisShutdownWaitFailover` | Whether the Redis® master container waits for the failover at shutdown (in addition to the Redis® Sentinel container). | `true` | | `sentinel.downAfterMilliseconds` | Timeout for detecting a Redis® node is down | `60000` | diff --git a/bitnami/redis/values.yaml b/bitnami/redis/values.yaml index ed62b66fc6..273908b8e0 100644 --- a/bitnami/redis/values.yaml +++ b/bitnami/redis/values.yaml @@ -1059,7 +1059,7 @@ sentinel: quorum: 2 ## @param sentinel.getMasterTimeout Amount of time to allow before get_sentinel_master_info() times out. ## - getMasterTimeout: 200 + getMasterTimeout: 99 ## @param sentinel.automateClusterRecovery Automate cluster recovery in cases where the last replica is not considered a good replica and Sentinel won't automatically failover to it. ## This also prevents any new replica from starting until the last remaining replica is elected as master to guarantee that it is the one to be elected by Sentinel, and not a newly started replica with no data. ## NOTE: This feature requires a "downAfterMilliseconds" value less or equal to 2000.