Skip to content

Commit 076e1ea

Browse files
committed
create README file
1 parent e9e23f7 commit 076e1ea

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
```

0 commit comments

Comments
 (0)