StatefulSetUpdateStrategyV1 Properties
ClassProperties2 members
Represents the update strategy configuration for a Kubernetes StatefulSet resource.
Specifies the rolling update strategy configuration for a StatefulSet in Kubernetes.
public RollingUpdateStatefulSetStrategyV1? RollingUpdate { get; set; }Remarks
This property defines the parameters for the rolling update process, managing how Pods in a StatefulSet are updated with minimal downtime and service disruption. Defaults to
null so the property is omitted from the serialized YAML when no rolling-update parameters have been configured. Eagerly initializing this to new() would otherwise emit an invalid empty rollingUpdate: {} mapping that Kubernetes rejects on apply. Determines the type of update strategy for a StatefulSet in Kubernetes.
public string Type { get; set; }Remarks
This property specifies the update strategy type used for managing updates to the StatefulSet. Common values include "RollingUpdate" for rolling updates of the StatefulSet pods, or "OnDelete" for manual updates.