File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
keps/sig-apps/4650-stateful-set-update-claim-template Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -302,9 +302,11 @@ The patch used in server-side apply is the volumeClaimTemplates in the StatefulS
302
302
* ` controller-revision-hash ` label is added to the PVCs.
303
303
304
304
Naturally, most of the update control logic also applies to PVCs.
305
- * Wait for PVCs to be ready for at least ` minReadySeconds ` before proceeding to the next replica.
306
305
* If ` updateStrategy ` is ` RollingUpdate ` , update the PVCs in the order from the largest ordinal to the smallest.
307
306
* If ` updateStrategy ` is ` OnDelete ` , only update the PVCs if the Pod is deleted manually.
307
+ However, ` minReadySeconds ` is not considered when only PVCs are updated.
308
+ because it is hard to determine when the PVC become ready.
309
+ And updating PVCs is unlikely to disrupt workloads, so it should be unnecessary to inject delay into the update process.
308
310
309
311
When creating new PVCs, use the ` volumeClaimTemplates ` from the same revision that is used to create the Pod.
310
312
You can’t perform that action at this time.
0 commit comments