Class StatefulSetStatus
StatefulSetStatus represents the current state of a StatefulSet.
Inheritance
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Outputs.Apps.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class StatefulSetStatus
Fields
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 readonly int CollisionCount
Field Value
| Type | Description |
|---|---|
| System.Int32 |
Conditions
Represents the latest available observations of a statefulset's current state.
Declaration
public readonly ImmutableArray<StatefulSetCondition> Conditions
Field Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<StatefulSetCondition> |
CurrentReplicas
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.
Declaration
public readonly int CurrentReplicas
Field Value
| Type | Description |
|---|---|
| System.Int32 |
CurrentRevision
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).
Declaration
public readonly string CurrentRevision
Field Value
| Type | Description |
|---|---|
| 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 readonly int ObservedGeneration
Field Value
| Type | Description |
|---|---|
| System.Int32 |
ReadyReplicas
readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.
Declaration
public readonly int ReadyReplicas
Field Value
| Type | Description |
|---|---|
| System.Int32 |
Replicas
replicas is the number of Pods created by the StatefulSet controller.
Declaration
public readonly int Replicas
Field Value
| Type | Description |
|---|---|
| System.Int32 |
UpdatedReplicas
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
Declaration
public readonly int UpdatedReplicas
Field Value
| Type | Description |
|---|---|
| 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 readonly string UpdateRevision
Field Value
| Type | Description |
|---|---|
| System.String |