Show / Hide Table of Contents

Class StatefulSetStatusArgs

StatefulSetStatus represents the current state of a StatefulSet.

Inheritance
System.Object
InputArgs
ResourceArgs
StatefulSetStatusArgs
Inherited Members
ResourceArgs.Empty
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.Inputs.Apps.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public class StatefulSetStatusArgs : ResourceArgs

Properties

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 Input<int> CollisionCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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

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

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>
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 Input<int> ObservedGeneration { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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

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

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>
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 Input<string> UpdateRevision { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.