Show / Hide Table of Contents

Class StatefulSetStatus

StatefulSetStatus represents the current state of a StatefulSet.

Inheritance
System.Object
StatefulSetStatus
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Outputs.Apps.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class StatefulSetStatus

Fields

View Source

CollisionCount

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
View Source

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>
View Source

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
View Source

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
View Source

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
View Source

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
View Source

Replicas

replicas is the number of Pods created by the StatefulSet controller.

Declaration
public readonly int Replicas
Field Value
Type Description
System.Int32
View Source

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
View Source

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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.