File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Redis-stack helm chart
2
+ ## Installation
3
+
4
+ To install the helm chart with latest images, run:
5
+
6
+ ``` bash
7
+ helm install redis-stack charts/redis-stack --values charts/redis-stack/values.yaml
8
+ ```
9
+
10
+ To install the helm chart with redis 7.0.0-RC5, run:
11
+
12
+ ``` bash
13
+ helm install redis-stack charts/redis-stack --values charts/redis-stack/values_700-RC5.yaml
14
+ ```
15
+
16
+ To install the helm chart with redis 6.2.2-v4, run:
17
+
18
+ ``` bash
19
+ helm install redis-stack charts/redis-stack --values charts/redis-stack/values_622-v4.yaml
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ To connect to redis-cli run:
25
+
26
+ ``` bash
27
+ kubectl get pods -o name | grep redis-stack
28
+ ```
29
+
30
+ Copy the name of the pod (E.g. redis-stack-77d596476d-6j4d2) and run the following command:
31
+
32
+ ``` bash
33
+ kubectl exec -it < POD_NAME> -- redis-cli
34
+ ```
You can’t perform that action at this time.
0 commit comments