Skip to content

Commit ed4d69b

Browse files
committed
chore: BREAKING CHANGE: Replace Bitnami Valkey dependency with official Valkey Helm chart from valkey.io
1 parent 344f5e0 commit ed4d69b

8 files changed

Lines changed: 40 additions & 71 deletions

File tree

.github/workflows/lint-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Add Helm Repositories
3939
run: |
40-
helm repo add bitnami https://charts.bitnami.com/bitnami
40+
helm repo add valkey https://valkey.io/valkey-helm/
4141
helm repo update
4242
4343
- name: Run chart-testing (list-changed)

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -770,17 +770,18 @@ extraTemplateManifests: []
770770
# stringData:
771771
# image_name: {{ .Values.image.repository }}
772772

773-
# Bitnami Valkey configuration
774-
# https://artifacthub.io/packages/helm/bitnami/valkey
773+
# Official Valkey Helm Chart configuration
774+
# https://github.com/valkey-io/valkey-helm
775775
valkey:
776776
enabled: false
777-
#architecture: standalone
777+
# replicaCount: 1
778778
#
779-
#primary:
780-
# persistence:
781-
# enabled: false
782-
# existingClaim: ""
783-
# size: 2Gi
779+
# auth:
780+
# enabled: false
781+
#
782+
# dataStorage:
783+
# enabled: false
784+
# requestedSize: 2Gi
784785
```
785786
## Migration Guide to Version 1.0.0
786787

charts/n8n/Chart.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: valkey
3-
repository: oci://registry-1.docker.io/bitnamicharts
4-
version: 2.4.7
5-
digest: sha256:22d7881004c028611a742708c08e2f2861a54b1134f9c2d74b451a75ba1968a8
6-
generated: "2025-03-31T11:55:46.320432+01:00"
3+
repository: https://valkey.io/valkey-helm/
4+
version: 0.8.1
5+
digest: sha256:9f554436d4d0d4b2817ab949eb90d2ddcc770fc5e60278bfed353d5fece6d5a6
6+
generated: "2025-12-01T23:58:16.062167+01:00"

charts/n8n/Chart.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: n8n
3-
version: 1.1.0
4-
appVersion: 1.116.2
3+
version: 2.0.0
4+
appVersion: 1.122.4
55
type: application
66
description: "Helm Chart for deploying n8n on Kubernetes, a fair-code workflow automation platform with native AI capabilities for technical teams. Easily automate tasks across different services."
77
home: https://github.com/8gears/n8n-helm-chart
@@ -26,13 +26,15 @@ maintainers:
2626

2727
dependencies:
2828
- name: valkey
29-
version: 2.4.7
30-
repository: oci://registry-1.docker.io/bitnamicharts
29+
version: 0.8.1
30+
repository: https://valkey.io/valkey-helm/
3131
condition: valkey.enabled
3232

3333
annotations:
3434
artifacthub.io/prerelease: "false"
3535
# supported kinds are added, changed, deprecated, removed, fixed and security.
3636
artifacthub.io/changes: |
37-
- kind: added
38-
description: "Add terminationGracePeriodSeconds configuration for main, worker, and webhook pods"
37+
- kind: changed
38+
description: "BREAKING CHANGE: Replace Bitnami Valkey dependency with official Valkey Helm chart from valkey.io"
39+
- kind: changed
40+
description: "update n8n to version 1.122.4"

charts/n8n/values.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -681,14 +681,15 @@ extraTemplateManifests: []
681681
# stringData:
682682
# image_name: {{ .Values.image.repository }}
683683

684-
# Bitnami Valkey configuration
685-
# https://artifacthub.io/packages/helm/bitnami/valkey
684+
# Official Valkey Helm Chart configuration
685+
# https://github.com/valkey-io/valkey-helm
686686
valkey:
687687
enabled: false
688-
# architecture: standalone
688+
# replicaCount: 1
689689
#
690-
# primary:
691-
# persistence:
692-
# enabled: false
693-
# existingClaim: ""
694-
# size: 2Gi
690+
# auth:
691+
# enabled: false
692+
#
693+
# dataStorage:
694+
# enabled: false
695+
# requestedSize: 2Gi

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ See [installation guide](https://cloudnative-pg.io/documentation/1.26/installati
2828

2929
```shell
3030
kubectl apply --server-side -f \
31-
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.26/releases/cnpg-1.26.0.yaml
31+
https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.27/releases/cnpg-1.27.1.yaml
3232
kubectl rollout status deployment \
3333
-n cnpg-system cnpg-controller-manager
3434
```

examples/values_full.yaml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ main:
3737
active: true
3838
bull:
3939
redis:
40-
host: n8n-valkey-primary
40+
host: n8n-valkey
4141
port: 6379
4242
secret:
4343
n8n:
@@ -80,19 +80,15 @@ webhook:
8080

8181
valkey:
8282
enabled: true
83-
architecture: standalone
84-
sentinel:
85-
enabled: false
83+
replicaCount: 1
8684
auth:
8785
enabled: false
88-
primary:
89-
kind: Deployment
90-
persistence:
91-
enabled: false
92-
resources:
93-
requests:
94-
memory: 256Mi
95-
cpu: 100m
86+
dataStorage:
87+
enabled: false
88+
resources:
89+
requests:
90+
memory: 256Mi
91+
cpu: 100m
9692

9793

9894
ingress:

helmfile.yaml

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)