Skip to content

Commit a8ab85d

Browse files
authored
docs: Sentinel recommendations and update security context fields (#1450)
Signed-off-by: yangw <[email protected]>
1 parent d17ea8b commit a8ab85d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/content/en/docs/Getting Started/Replication/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ description: >
77
Instructions for setting up Redis Replication
88
---
99

10+
> **Note:** It is recommended to use [Sentinel](../Sentinel) to monitor the Replication cluster for enhanced high availability and reliability. By implementing Redis Sentinel, you can ensure that your Redis Replication remains operational even if one or more nodes fail, thereby improving the resilience and reliability of your application.
11+
1012
## Architecture
1113

1214
Redis is an in-memory key-value store that can be used as a database, cache, and message broker. Redis replication is the process of synchronizing data from a Redis leader node to one or more Redis follower nodes.
@@ -21,8 +23,6 @@ Redis replication is a powerful feature that enhances the durability and scalabi
2123
<img src="../../../images/replication-redis.png">
2224
</div>
2325

24-
> **Note:** By using Redis Sentinel, you can ensure that your Redis Replication remains available even if one or more nodes go down, improving the resilience and reliability of your application.
25-
2626
## Helm Installation
2727

2828
For redis replication setup we can use `helm` command with the reference of replication helm chart and additional properties:
@@ -78,7 +78,7 @@ metadata:
7878
name: redis-replication
7979
spec:
8080
clusterSize: 3
81-
securityContext:
81+
podSecurityContext:
8282
runAsUser: 1000
8383
fsGroup: 1000
8484
kubernetesConfig:

docs/content/en/docs/Getting Started/Standalone/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ spec:
7878
resources:
7979
requests:
8080
storage: 1Gi
81-
securityContext:
81+
podSecurityContext:
8282
runAsUser: 1000
8383
fsGroup: 1000
8484
```

0 commit comments

Comments
 (0)