You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By moving the `partition` to `0`, you allowed the StatefulSet to
827
828
continue the update process.
828
829
829
-
### On Delete
830
+
### OnDelete {#on-delete}
830
831
831
832
The `OnDelete` update strategy implements the legacy (1.6 and prior) behavior,
832
833
When you select this update strategy, the StatefulSet controller will not
@@ -841,7 +842,7 @@ StatefulSet supports both Non-Cascading and Cascading deletion. In a
841
842
Non-Cascading Delete, the StatefulSet's Pods are not deleted when the StatefulSet is deleted. In a Cascading Delete, both the StatefulSet and its Pods are
842
843
deleted.
843
844
844
-
### Non-Cascading Delete
845
+
### Non-cascading delete
845
846
846
847
In one terminal window, watch the Pods in the StatefulSet.
847
848
@@ -962,7 +963,7 @@ because the StatefulSet never deletes the PersistentVolumes associated with a
962
963
Pod. When you recreated the StatefulSet and it relaunched `web-0`, its original
963
964
PersistentVolume was remounted.
964
965
965
-
### Cascading Delete
966
+
### Cascading delete
966
967
967
968
In one terminal window, watch the Pods in the StatefulSet.
968
969
@@ -1070,20 +1071,20 @@ kubectl delete statefulset web
1070
1071
statefulset "web" deleted
1071
1072
```
1072
1073
1073
-
## Pod Management Policy
1074
+
## Pod management policy
1074
1075
1075
1076
For some distributed systems, the StatefulSet ordering guarantees are
1076
1077
unnecessary and/or undesirable. These systems require only uniqueness and
1077
1078
identity. To address this, in Kubernetes 1.7, we introduced
1078
1079
`.spec.podManagementPolicy` to the StatefulSet API Object.
1079
1080
1080
-
### OrderedReady Pod Management
1081
+
### OrderedReady Pod management
1081
1082
1082
1083
`OrderedReady` pod management is the default for StatefulSets. It tells the
1083
1084
StatefulSet controller to respect the ordering guarantees demonstrated
1084
1085
above.
1085
1086
1086
-
### Parallel Pod Management
1087
+
### Parallel Pod management
1087
1088
1088
1089
`Parallel` pod management tells the StatefulSet controller to launch or
1089
1090
terminate all Pods in parallel, and not to wait for Pods to become Running
0 commit comments