File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ dependencies:
2+ - name: redis
3+ repository: https://charts.bitnami.com/bitnami
4+ version: 25.3.9
5+ digest: sha256:b73bce4f620c0eb4c95400630198c7fbb2dcd542c682a924f0b52c7e611ae000
6+ generated: "2026-04-02T14:27:22.689377+02:00"
Original file line number Diff line number Diff line change @@ -14,3 +14,10 @@ maintainers:
1414 email : thomas@getplumber.io
1515 - name : Totara-thib
1616 email : thibaud@getplumber.io
17+ - name : Joseph94m
18+ email : joseph.moukarzel@jmclarity.com
19+ dependencies :
20+ - name : redis
21+ version : " ~25"
22+ repository : https://charts.bitnami.com/bitnami
23+ condition : redis.deploy
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ spec:
118118 value : " {{ $.Values.redis.custom.user }}"
119119 - name : JOBS_REDIS_SET_NAMESPACES_TTL
120120 value : " 30s"
121+
121122 - name : GITLEAKS_PATH
122123 value : " /opt/gitleaks"
123124
@@ -213,7 +214,7 @@ spec:
213214 name : {{ .configMapName | default "plumber-ca-certificates" }}
214215 {{- else }}
215216 emptyDir :
216- sizeLimit : 1Ki
217+ sizeLimit : 1Mi
217218 {{- end }}
218219 {{- end }}
219220
Original file line number Diff line number Diff line change 2020 content :
2121 name : ca-certificates
2222 emptyDir :
23- sizeLimit : 1Ki
23+ sizeLimit : 1Mi
2424
2525 - it : Deployments should bind to an external secret if .existingSecret is set
2626 set :
Original file line number Diff line number Diff line change @@ -260,8 +260,36 @@ postgresql:
260260 # adminPasswordKey: "password"
261261 # userPasswordKey: "password"
262262
263- # External Redis
263+ # 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.
267+ deploy : false
268+
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.
276+ 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
290+
291+ # 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).
265293 custom :
266294 host : " "
267295 user : " default"
You can’t perform that action at this time.
0 commit comments