Class StatefulSetStatusArgs
StatefulSetStatus represents the current state of a StatefulSet.
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Inputs.Apps.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class StatefulSetStatusArgs : ResourceArgs
Properties
View SourceCollisionCount
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.
Declaration
public Input<int> CollisionCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Conditions
Represents the latest available observations of a statefulset's current state.
Declaration
public InputList<StatefulSetConditionArgs> Conditions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<StatefulSetConditionArgs> |
CurrentReplicas
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
Declaration
public Input<int> CurrentReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
CurrentRevision
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
Declaration
public Input<string> CurrentRevision { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ObservedGeneration
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.
Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ReadyReplicas
readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
Declaration
public Input<int> ReadyReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Replicas
replicas is the number of Pods created by the StatefulSet controller.
Declaration
public Input<int> Replicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UpdatedReplicas
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
Declaration
public Input<int> UpdatedReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
UpdateRevision
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)
Declaration
public Input<string> UpdateRevision { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |