Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 4892b08

Browse files
authored
fix(helm): change strategy to Recreate (#3325)
Current dendrite needs an PVC and replica of 1 is forced, so best way of update and change of configuration is to stop and start (instatt of start multiple dendrite pod with deadlock of binding pvc) see: #3258 ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately Signed-off-by: `Your Name <[email protected]>` - [x] version bump of helm Chart Signed-off-by: WrenIX <[email protected]> [skip ci]
1 parent 58bc289 commit 4892b08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helm/dendrite/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: dendrite
3-
version: "0.13.7"
3+
version: "0.13.8"
44
appVersion: "0.13.6"
55
description: Dendrite Matrix Homeserver
66
type: application

helm/dendrite/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ extraVolumeMounts: []
9292
strategy:
9393
# -- Strategy to use for rolling updates (e.g. Recreate, RollingUpdate)
9494
# If you are using ReadWriteOnce volumes, you should probably use Recreate
95-
type: RollingUpdate
95+
type: Recreate
9696
rollingUpdate:
9797
# -- Maximum number of pods that can be unavailable during the update process
9898
maxUnavailable: 25%

0 commit comments

Comments
 (0)