Remove explicit Redis Helm version (#228)

This commit is contained in:
Ricardo Niepel 2019-11-04 10:06:41 -05:00 committed by Young Bu Park
parent 8f8ef56497
commit fd9a10c5ea
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ Dapr can use any Redis instance - containerized, running on your local dev machi
We can use [Helm](https://helm.sh/) to quickly create a Redis instance in our Kubernetes cluster. This approach requires [Installing Helm](https://github.com/helm/helm#install).
1. Install Redis into your cluster: `helm install stable/redis --name redis --set image.tag=5.0.5-debian-9-r104`. Note that we're explicitly setting an image tag to get a version greater than 5, which is what Dapr' pub/sub functionality requires. If you're intending on using Redis as just a state store (and not for pub/sub), you do not have to set the image version.
1. Install Redis into your cluster: `helm install stable/redis --name redis`.
> Note that you need a Redis version greater than 5, which is what Dapr' pub/sub functionality requires. If you're intending on using Redis as just a state store (and not for pub/sub), also a lower version can be used.
2. Run `kubectl get pods` to see the Redis containers now running in your cluster.
3. Add `redis-master:6379` as the `redisHost` in your [redis.yaml](#configuration) file. For example:
```yaml