From dd64eb222b8f543c5f80ab0f1dba065b77e7b355 Mon Sep 17 00:00:00 2001 From: justusbunsi Date: Fri, 5 Jul 2024 20:38:45 +0200 Subject: [PATCH] Use correct replica setting for standalone master https://github.com/bitnami/charts/blob/83d474c3da0f1a82c5cd4400a5d66d9099e8cfc7/bitnami/redis/templates/master/application.yaml#L20C17-L20C36 Signed-off-by: justusbunsi --- README.md | 12 ++++++------ values.yaml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3f70760..013ec43 100644 --- a/README.md +++ b/README.md @@ -1053,12 +1053,12 @@ To comply with the Gitea helm chart definition of the digest parameter, a "custo ### redis -| Name | Description | Value | -| ----------------------------- | ---------------------------------------- | ------------ | -| `redis.enabled` | Enable redis standalone or replicated | `false` | -| `redis.architecture` | Whether to use standalone or replication | `standalone` | -| `redis.global.redis.password` | Required password | `changeme` | -| `redis.replica.replicaCount` | Number of replicas under master(s) | `1` | +| Name | Description | Value | +| ----------------------------- | ------------------------------------------ | ------------ | +| `redis.enabled` | Enable redis standalone or replicated | `false` | +| `redis.architecture` | Whether to use standalone or replication | `standalone` | +| `redis.global.redis.password` | Required password | `changeme` | +| `redis.master.count` | Number of Redis master instances to deploy | `1` | ### PostgreSQL HA diff --git a/values.yaml b/values.yaml index b7536bc..d01f889 100644 --- a/values.yaml +++ b/values.yaml @@ -496,15 +496,15 @@ redis-cluster: ## @param redis.enabled Enable redis standalone or replicated ## @param redis.architecture Whether to use standalone or replication ## @param redis.global.redis.password Required password -## @param redis.replica.replicaCount Number of replicas under master(s) +## @param redis.master.count Number of Redis master instances to deploy redis: enabled: false architecture: standalone global: redis: password: changeme - replica: - replicaCount: 1 + master: + count: 1 ## @section PostgreSQL HA #