Skip to content
Snippets Groups Projects
  • david.bauer's avatar
    f25cf886
    Change: Redis Configuration · f25cf886
    david.bauer authored
    This is a breaking change.
    
    Changelog:
    - Redis is now mandatory and enabled by default
    - Added Sentinel, Standalone and Cluster support
    - Standalone mode with sidecar is used by default
      - If no host(s) are configured, a redis sidecar is injected into the deployment
      - No extra configuration needed
      - This is intended for development and does not scale.
    - Helm values have changed, see README.md:
      - `redis.host` has been renamed to `redis.hosts` and expects a list of strings with the following pattern: <localhost:6379> (needed for sentinel and cluster modes)
      - `redis.port` has been removed, see `redis.hosts`
    f25cf886
    History
    Change: Redis Configuration
    david.bauer authored
    This is a breaking change.
    
    Changelog:
    - Redis is now mandatory and enabled by default
    - Added Sentinel, Standalone and Cluster support
    - Standalone mode with sidecar is used by default
      - If no host(s) are configured, a redis sidecar is injected into the deployment
      - No extra configuration needed
      - This is intended for development and does not scale.
    - Helm values have changed, see README.md:
      - `redis.host` has been renamed to `redis.hosts` and expects a list of strings with the following pattern: <localhost:6379> (needed for sentinel and cluster modes)
      - `redis.port` has been removed, see `redis.hosts`
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.env.defaults 457 B
NODE_ENV=production
CACHE_TTL=30000
PORT=8080
METRICS_PORT=9090
LOG_LEVEL=info
APP_ROOT=/
EXPOSE_API_DOCS=false
COMPRESS_FILE_SIZE=600
COMPRESS_FILE_TYPES=application/javascript application/json application/x-javascript application/xml application/xml+rss text/css text/html text/javascript text/plain text/xml image/svg+xml

REDIS_MODE=standalone
REDIS_SENTINEL_MASTER_ID=mymaster
REDIS_DB=0
REDIS_PREFIX=ui-middleware
REDIS_HOSTS=localhost:6379
ORIGINS=*