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
What is the user interaction of your feature
Users can control the UpdateStrategy of the underlying InstanceSet by modifying top-level CR resources, such as the Clusterresource.
Is your feature request related to a problem? Please describe.
If users wish to modify the UpdateStrategy on the InstanceSet to implement the capability for partitioned rolling updates, they currently can only achieve this by directly modifying the InstanceSet, as there is a lack of upper-layer API interfaces.
If this is a new feature, please describe the motivation and goals.
Able to expose the capability to configure the InstanceSet UpdateStrategy in the upper-layer API.
Describe the solution you'd like
Expose the configuration entry for the InstanceSet UpdateStrategy in the upper-layer ClusterComponentSpec.
The text was updated successfully, but these errors were encountered:
Similar to StatefulSet's StatefulSetUpdateStrategy, it is possible to effectively control the gradual release pace and concurrency of Pod instances.
For example, if we have 100 instances, during the first phase, we want to gradually release 10 instances with a concurrency of 2. This means that if the first two instances fail during the gradual release, the subsequent 8 instances will not proceed with the release. In the second phase, the gradual release will expand to 50 instances, and finally, in the third phase, we will achieve a 100% gradual release.
What is the user interaction of your feature
Users can control the
UpdateStrategy
of the underlyingInstanceSet
by modifying top-level CR resources, such as theCluster
resource.Is your feature request related to a problem? Please describe.
If users wish to modify the
UpdateStrategy
on theInstanceSet
to implement the capability for partitioned rolling updates, they currently can only achieve this by directly modifying theInstanceSet
, as there is a lack of upper-layer API interfaces.If this is a new feature, please describe the motivation and goals.
Able to expose the capability to configure the InstanceSet UpdateStrategy in the upper-layer API.
Describe the solution you'd like
Expose the configuration entry for the InstanceSet UpdateStrategy in the upper-layer
ClusterComponentSpec
.The text was updated successfully, but these errors were encountered: