This repository contains a Helm chart for deploying a Redis cluster.
- Helm 3.x installed on your local machine
- A Kubernetes cluster running
-
Clone this repository:
git clone https://github.com/muhamadsoufi/RedisCluster-HelmChart-K8S.git cd ./RedisCluster-HelmChart-K8S
-
Install the Helm chart:
helm install redis-cluster ./RedisCluster-HelmChart-K8S
This will install the Redis cluster in your Kubernetes cluster using the default values.
-
Customize your installation (optional): You can customize the installation by modifying the
values.yaml
file or by providing your own values file during installation:helm install redis-cluster ./RedisCluster-HelmChart-K8S -f custom-values.yaml
-
Upgrade the chart: If you make changes to the
values.yaml
or the chart itself, you can upgrade the release:helm upgrade redis-cluster ./RedisCluster-HelmChart-K8S
-
Uninstall the chart: To uninstall and delete the Redis cluster:
helm uninstall redis-cluster
Feel free to submit issues and pull requests to help improve this Helm chart.