Skip to content

redis

Introduction

The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.

Redis is used by multiple services (e.g. Authelia) to cache sessions, store short-lived data or as storage between multiple replicas of an application.

Created Resources

Kind Name
Namespace redis
HelmRelease redis

CLI

Redis provides a CLI tool to interact with the instance. The following commands can be used to access it inside the cluster:

kubectl exec -it --namespace redis deploy/redis -- redis-cli
kubectl exec -it --namespace redis deploy/redis -- redis-cli <command>

For more information on the redis-cli command itself visit their docs.