Skip to main content

component-redis

A small Redis instance for a project. Single-replica Deployment + ClusterIP Service on port 6379.

warning

Not persistent. Suitable for caching / queues that tolerate data loss on restart. If you need persistence, use a real Redis operator outside this chart.

Enable it

component-redis:
enabled: true

Defaults

image:
repository: redis
tag: "7"
pullPolicy: IfNotPresent
containerPort: 6379

Resources are fixed: 50m/64Mi requests, 250m/256Mi limits.

How to reach it

The service is named redis-service in the project namespace. Connection string for your app:

redis://redis-service:6379