Show / Hide Table of Contents

Class ReplicaSetStatusArgs

ReplicaSetStatus represents the current status of a ReplicaSet.

Inheritance
System.Object
InputArgs
ResourceArgs
ReplicaSetStatusArgs
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.Extensions.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class ReplicaSetStatusArgs : ResourceArgs

Properties

View Source

AvailableReplicas

The number of available replicas (ready for at least minReadySeconds) for this replica set.

Declaration
public Input<int> AvailableReplicas { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Conditions

Represents the latest available observations of a replica set's current state.

Declaration
public InputList<ReplicaSetConditionArgs> Conditions { get; set; }
Property Value
Type Description
InputList<ReplicaSetConditionArgs>
View Source

FullyLabeledReplicas

The number of pods that have labels matching the labels of the pod template of the replicaset.

Declaration
public Input<int> FullyLabeledReplicas { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ObservedGeneration

ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ReadyReplicas

The number of ready replicas for this replica set.

Declaration
public Input<int> ReadyReplicas { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Replicas

Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

Declaration
public Input<int> Replicas { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.