Skip to content

Commit c65356b

Browse files
mustafasemihbaymustafasemihbay
andauthored
Fix helm install commands (#37)
Fix helm install commands for generic install Co-authored-by: mustafasemihbay <[email protected]>
1 parent dde90b3 commit c65356b

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,36 @@
55
# Redis-stack helm chart
66
## Installation
77

8+
To add the repo:
9+
10+
```bash
11+
helm repo add redis-stack https://redis-stack.github.io/helm-redis-stack/
12+
```
13+
814
To install redis-stack helm chart with latest images, run:
915

1016
```bash
11-
helm install redis-stack charts/redis-stack --values charts/redis-stack/values.yaml
17+
helm install redis-stack redis-stack/redis-stack
1218
```
1319

1420
To install redis-stack-server helm chart with latest images, run:
1521

1622
```bash
17-
helm install redis-stack charts/redis-stack-server --values charts/redis-stack-server/values.yaml
23+
helm install redis-stack redis-stack/redis-stack-server
1824
```
1925

2026
To install the helm chart with specific redis tag, just add ```--set``` tag:
2127

2228
```bash
23-
helm install redis-stack charts/redis-stack --values charts/redis-stack/values.yaml --set redis_stack.tag="<TAG>"
29+
helm install redis-stack redis-stack/redis-stack --set redis_stack.tag="<TAG>"
2430
```
2531

2632
For example, to run redis stack with redis version 7.0.0, run:
2733

2834
```bash
29-
helm install redis-stack charts/redis-stack --values charts/redis-stack/values.yaml --set redis_stack.tag="7.0.0-RC5"
35+
helm install redis-stack redis-stack/redis-stack --set redis_stack.tag="7.0.0-RC5"
3036
```
3137

32-
To add the repo:
33-
34-
```bash
35-
helm repo add redis-stack https://redis-stack.github.io/helm-redis-stack/
36-
```
3738

3839
## Usage
3940

0 commit comments

Comments
 (0)