Helm Chart 6.0.0 Breaking Change

Redis configs format moved from redis.* to cache.* and from redis.master.* to cache.redis.*

Starting with release 6.0.0, the redis Helm settings will be renamed to cache to support the transition to the open-source version of Redis. Settings previously defined under redis.* will move to cache.*, and settings under redis.master.* will move to cache.redis.*.


Example:

Old format

redis:
  provisionInstance: true
  auth:
    password: "hello-world"
  master:
    resources:
      requests:
        memory: 128Mi
        cpu: 100m

New format

cache:
  provisionInstance: true
  auth:
    password: "hello-world"
  redis:
    resources:
      requests:
        memory: 128Mi
        cpu: 100m