Redis Operator
  • Speculator: Redis Operator
  • Quickstart
  • Installation
    • Helm
    • Kubectl
  • Setup
    • Standalone
    • Cluster
    • Helm Configuration
  • Configuration
  • Development
  • Roadmap
  • Changelog
Powered by GitBook
On this page
  • Helm
  • Kubectl

Was this helpful?

  1. Setup

Cluster

Redis cluster setup

For setting up the redis cluster we can use helm and kubectl. The only thing which needs to be taken care of is that the minimum count for cluster is 3.

Helm

# Create redis cluster setup
helm upgrade redis-cluster ./helm/redis-setup \
  -f ./helm/redis-setup/cluster-values.yaml \
  --set setupMode="cluster" --set cluster.size=3 \
  --install --namespace redis-operator

Kubectl

# Standalone redis deployment
kubectl apply -f example/redis-cluster-example.yaml
PreviousStandaloneNextHelm Configuration

Last updated 4 years ago

Was this helpful?