次の方法で共有


ReplicaSetSpecV1.MinReadySeconds Property

Definition

Specifies the minimum time, in seconds, a pod should remain in the Ready state before it is considered available.

[YamlDotNet.Serialization.YamlMember(Alias="minReadySeconds")]
public int? MinReadySeconds { get; set; }
[<YamlDotNet.Serialization.YamlMember(Alias="minReadySeconds")>]
member this.MinReadySeconds : Nullable<int> with get, set
Public Property MinReadySeconds As Nullable(Of Integer)

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

This property is used to define a stabilization period for newly created pods in a ReplicaSet. Pods must remain in the Ready state for at least the specified number of seconds before being considered available for scaling decisions or readiness. A value of null or 0 indicates no stabilization period is required.

Applies to