redis.image.*
Redis container image configuration. Redis is used by the CrewAI Platform for caching, session management, and real-time features.
Container registry hosting the Redis image.Default: Where
"" (empty) - Automatically uses global.imageRegistry valueFallback Behavior:When redis.image.host is empty or not set, the chart uses global.imageRegistry via the crewai-platform.redisImageRegistry template helper.Automatic Image Override:The chart automatically sets the REDIS_IMAGE_OVERRIDE environment variable by combining these values:<registry> is determined by: redis.image.host OR global.imageRegistry (fallback)When imageNamePrefixOverride is Set:The image name is automatically simplified:- Original:
proxy/crewai/dockerhub/library/redis - With
imageNamePrefixOverride: "crewai/"becomes:crewai/redis
Redis container image name.Default:
"proxy/crewai/dockerhub/library/redis" - Matches Replicated proxy path structurePath Transformation:When global.imageNamePrefixOverride is set, only the final component (redis) is used with the override prefix.Redis image version tag.Default:
"latest"Note: Uses the latest stable Redis release to ensure access to recent features, bug fixes, and security updates.Usage
Redis is used for:- Session storage and management
- Caching frequently accessed data
- Real-time features and WebSocket support
- Background job queue management
- Temporary data storage
Example Configuration
Default Configuration (using Replicated proxy):images.crewai.com/proxy/crewai/dockerhub/library/redis:latest
Private Registry with imageNamePrefixOverride:
123456789012.dkr.ecr.us-west-2.amazonaws.com/crewai/redis:latest
Custom Registry:
harbor.company.com/bitnami/redis:7.2.4-debian-12-r0
Version Pinning:
images.crewai.com/proxy/crewai/dockerhub/library/redis:7.2.4-alpine
Automatic Configuration
The Redis image configuration automatically:- Uses
global.imageRegistrywhenredis.image.hostis not set - Applies
global.imageNamePrefixOverridefor simplified image paths - Sets the
REDIS_IMAGE_OVERRIDEenvironment variable for application use
