Skip to content

Commit 71a2db0

Browse files
authoredAug 10, 2023
[bitnami/redis] fix redis sentinel start up (#18321)
Signed-off-by: Luo, Xinyu <1349694179@qq.com>
1 parent 7322516 commit 71a2db0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎bitnami/redis/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ maintainers:
2525
name: redis
2626
sources:
2727
- https://github.com/bitnami/charts/tree/main/bitnami/redis
28-
version: 17.15.0
28+
version: 17.15.1

‎bitnami/redis/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ The command removes all the Kubernetes components associated with the chart and
353353
| `sentinel.annotations` | Additional custom annotations for Redis&reg; Sentinel resource | `{}` |
354354
| `sentinel.masterSet` | Master set name | `mymaster` |
355355
| `sentinel.quorum` | Sentinel Quorum | `2` |
356-
| `sentinel.getMasterTimeout` | Amount of time to allow before get_sentinel_master_info() times out. | `200` |
356+
| `sentinel.getMasterTimeout` | Amount of time to allow before get_sentinel_master_info() times out. | `99` |
357357
| `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` |
358358
| `sentinel.redisShutdownWaitFailover` | Whether the Redis&reg; master container waits for the failover at shutdown (in addition to the Redis&reg; Sentinel container). | `true` |
359359
| `sentinel.downAfterMilliseconds` | Timeout for detecting a Redis&reg; node is down | `60000` |

‎bitnami/redis/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ sentinel:
10591059
quorum: 2
10601060
## @param sentinel.getMasterTimeout Amount of time to allow before get_sentinel_master_info() times out.
10611061
##
1062-
getMasterTimeout: 200
1062+
getMasterTimeout: 99
10631063
## @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.
10641064
## 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.
10651065
## NOTE: This feature requires a "downAfterMilliseconds" value less or equal to 2000.

0 commit comments

Comments
 (0)
Please sign in to comment.