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

Commit

Permalink
fix(helm): change strategy to Recreate
Browse files Browse the repository at this point in the history
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
Signed-off-by: WrenIX <dev.github@wrenix.eu>
  • Loading branch information
wrenix committed Feb 8, 2024
1 parent be0c27e commit 1d4e304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/dendrite/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: dendrite
version: "0.13.7"
version: "0.13.8"
appVersion: "0.13.6"
description: Dendrite Matrix Homeserver
type: application
Expand Down
2 changes: 1 addition & 1 deletion helm/dendrite/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ extraVolumeMounts: []
strategy:
# -- Strategy to use for rolling updates (e.g. Recreate, RollingUpdate)
# If you are using ReadWriteOnce volumes, you should probably use Recreate
type: RollingUpdate
type: Recreate
rollingUpdate:
# -- Maximum number of pods that can be unavailable during the update process
maxUnavailable: 25%
Expand Down

0 comments on commit 1d4e304

Please sign in to comment.