To add the repo:
helm repo add redis-stack https://redis-stack.github.io/helm-redis-stack/To install redis-stack helm chart with latest images, run:
helm install redis-stack redis-stack/redis-stackTo install redis-stack-server helm chart with latest images, run:
helm install redis-stack redis-stack/redis-stack-serverTo install the helm chart with specific redis tag, just add --set tag:
helm install redis-stack redis-stack/redis-stack --set redis_stack.tag="<TAG>"For example, to run redis stack with redis version 7.0.0, run:
helm install redis-stack redis-stack/redis-stack --set redis_stack.tag="7.0.0-RC5"To connect to redis-cli run:
kubectl get pods -o name | grep redis-stackCopy the name of the pod (E.g. redis-stack-77d596476d-6j4d2) and run the following command:
kubectl exec -it <POD_NAME> -- redis-cli