Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6717ed8

Browse files
author
Andrea Dolfi
committedMar 24, 2025·
Update Readme files.
Signed-off-by: Andrea Dolfi <andrea.dolfi.e@thalesdigital.io>
1 parent 69eff6a commit 6717ed8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed
 

‎charts/redis-cluster/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ helm delete <my-release> --namespace <namespace>
9595
| redisCluster.name | string | `""` | |
9696
| redisCluster.persistenceEnabled | bool | `true` | |
9797
| redisCluster.recreateStatefulSetOnUpdateInvalid | bool | `false` | Some fields of statefulset are immutable, such as volumeClaimTemplates. When set to true, the operator will delete the statefulset and recreate it. Default is false. |
98+
| redisCluster.enableMasterSlaveAntiAffinity | bool | `false` | Add the appropriate annotation to RedisCluster, so that the operator can enforce anti affinity between leaders and followers. Notice that this requires webhooks to be enabled on the operator. Default is false. |
9899
| redisCluster.redisSecret.secretKey | string | `""` | |
99100
| redisCluster.redisSecret.secretName | string | `""` | |
100101
| redisCluster.resources | object | `{}` | |

‎charts/redis-operator/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ helm install <redis-operator> ot-helm/redis-operator --version=0.15.5 --appVersi
4646
> Note: If `certificate.secretName` is not provided, the operator will generate a self-signed certificate and use it for webhook server.
4747
---
4848
> Note : If you want to disable the webhook you have to pass the `--set webhook=false` and `--set certmanager.enabled=false` while installing the redis-operator.
49+
---
50+
> Note: If you want to use an existing `ClusterIssuer` to sign the webhook certificate, you can pass `--set issuer.create=false`, `--set issuer.kind=ClusterIssuer` and `--set issuer.name=cluster-issuer-name-here` while installing the operator.
4951
5052
### 4. Patch the CA Bundle (if using cert-manager)
5153

@@ -90,6 +92,8 @@ kubectl create secret tls <webhook-server-cert> --key tls.key --cert tls.crt -n
9092
| certificate.secretName | string | `"webhook-server-cert"` | |
9193
| certmanager.apiVersion | string | `"cert-manager.io/v1"` | |
9294
| certmanager.enabled | bool | `false` | |
95+
| issuer.create | bool | `true` | |
96+
| issuer.kind | string | `Issuer` | |
9397
| issuer.email | string | `"shubham.gupta@opstree.com"` | |
9498
| issuer.name | string | `"redis-operator-issuer"` | |
9599
| issuer.privateKeySecretName | string | `"letsencrypt-prod"` | |

0 commit comments

Comments
 (0)
Please sign in to comment.