@@ -262,34 +262,28 @@ postgresql:
262262
263263# Redis
264264redis :
265- # -- Set to true to deploy a Redis instance as part of this chart (via bitnami/redis sub-chart) .
266- # When false (default) , Redis is treated as an external dependency and you must provide connection details below.
265+ # -- Set to true to deploy a Redis instance as part of this chart.
266+ # When false, Redis is treated as an external dependency — provide connection details in custom below.
267267 deploy : false
268268
269- # -- Redis architecture when deployed by this chart. Options: "standalone" or "replication".
270- # Keep Standalone for now because we do not support replication yet.
271- architecture : standalone
272-
273- # Image configuration (only used when deploy is true).
274- # Override these to pull from a private registry or mirror.
275- # When using a non-bitnami registry, you must also set global.security.allowInsecureImages to true.
269+ # Image configuration for the bundled Redis instance (only used when deploy is true).
276270 image :
277- # registry: my-private-registry.example.com
278- # repository: bitnami/redis
279- # tag: "latest"
280- digest : " sha256:98cf67395e80506c7bc21b889107980365558ef30d59059ac6d76aab2678bf7e "
281- # pullPolicy: IfNotPresent
282- # pullSecrets:
283- # - my-registry-secret
284-
285- # Persistence for deployed Redis (only used when deploy is true ).
286- # Disabled by default — Redis is used as a cache/queue, data loss on restart is acceptable .
287- master :
288- persistence :
289- enabled : false
271+ # -- Optional registry prefix (e.g. my-private-registry.example.com).
272+ # When set, the image is pulled as <registry>/<repository>:<tag>.
273+ # Leave empty to use repository as-is.
274+ registry : " "
275+ # -- Image repository. Override to pull from a mirror or private registry.
276+ repository : redis
277+ # -- Image tag.
278+ tag : " 8.4 "
279+ # -- Optional content-addressable digest (sha256:... ).
280+ # When set, pins the exact image version regardless of tag .
281+ digest : " "
282+ # -- Pull policy for the Redis image.
283+ pullPolicy : IfNotPresent
290284
291285 # Connection details for the Redis instance (used whether deployed by this chart or external).
292- # When deploy is true and custom.host is empty, the host defaults to the sub-chart's service ( <release>-redis-master) .
286+ # When deploy is true and custom.host is empty, the host defaults to <release>-redis-master.
293287 custom :
294288 host : " "
295289 user : " default"
0 commit comments