Skip to content

Commit a43c6b4

Browse files
helm chart: use valkey instead of redis
1 parent ea8b74d commit a43c6b4

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

helm/defectdojo/Chart.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ dependencies:
1313
version: ~16.7.0
1414
repository: "oci://us-docker.pkg.dev/os-public-container-registry/defectdojo"
1515
condition: postgresql.enabled
16-
- name: redis
17-
version: ~19.6.4
16+
- name: valkey
17+
alias: redis
18+
version: ">= 1.0.0"
1819
repository: "oci://us-docker.pkg.dev/os-public-container-registry/defectdojo"
1920
condition: redis.enabled
2021
annotations:

helm/defectdojo/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,8 @@ Sample secret template (replace the placeholders with your PostgreSQL credential
393393
```YAML
394394
apiversion: v1
395395
kind: Secret
396-
metadata:
397-
name: defectdojo-postgresql-specific
396+
metadata:
397+
name: defectdojo-postgresql-specific
398398
type: Opaque
399399
stringData: # I chose stringData for better visualization of the credentials for debugging
400400
password: <user-password>
@@ -510,7 +510,7 @@ A Helm chart for Kubernetes to install DefectDojo
510510
| Repository | Name | Version |
511511
|------------|------|---------|
512512
| oci://us-docker.pkg.dev/os-public-container-registry/defectdojo | postgresql | ~16.7.0 |
513-
| oci://us-docker.pkg.dev/os-public-container-registry/defectdojo | redis | ~19.6.4 |
513+
| oci://us-docker.pkg.dev/os-public-container-registry/defectdojo | valkey (aliased as `redis`) | >= 1.0.0 |
514514
515515
## Values
516516

helm/defectdojo/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,9 @@ gke:
462462
# Only works with serviceAccount.create = true
463463
workloadIdentityEmail: ""
464464

465-
# For more advance options check the bitnami chart documentation: https://github.com/bitnami/charts/tree/main/bitnami/redis
465+
# For more advanced options check the chart documentation for Valkey (drop-in Redis replacement).
466+
# If you continue to use the bundled dependency, the PVC name and values key remain under `redis`.
467+
# Valkey chart docs: https://github.com/bitnami/charts/tree/main/bitnami/valkey
466468
redis:
467469
# To use an external instance, switch enabled to `false`` and set the address in `redisServer` below
468470
enabled: true

0 commit comments

Comments
 (0)