Browse Source

helm: clarify updateStrategy multi-replica behavior

Expand comment to warn users that RollingUpdate with multiple replicas
requires shared storage (ReadWriteMany) to avoid data loss.
pull/7639/head
chrislu 7 days ago
parent
commit
1bf2724c4b
  1. 5
      k8s/charts/seaweedfs/values.yaml

5
k8s/charts/seaweedfs/values.yaml

@ -1118,7 +1118,10 @@ allInOne:
# Update strategy configuration # Update strategy configuration
# type: Recreate or RollingUpdate # type: Recreate or RollingUpdate
# For single replica, Recreate is recommended to avoid data conflicts
# For single replica, Recreate is recommended to avoid data conflicts.
# For multiple replicas with RollingUpdate, you MUST use shared storage
# (e.g., data.type: persistentVolumeClaim with ReadWriteMany access mode)
# to avoid data loss or inconsistency between pods.
updateStrategy: updateStrategy:
type: Recreate type: Recreate

Loading…
Cancel
Save