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

Standalone

Standalone Redis setup

We can use helm and kubectl for deploying the redis standalone server.

Helm

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

Kubectl

# Standalone redis deployment
kubectl apply -f example/redis-standalone-example.yaml
PreviousKubectlNextCluster

Last updated 4 years ago

Was this helpful?