> For the complete documentation index, see [llms.txt](https://docs.opstreelabs.in/redis-operator/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.opstreelabs.in/redis-operator/setup/standalone.md).

# Standalone

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

### Helm

```bash
# 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

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