Show / Hide Table of Contents

Class DeploymentStatusArgs

DeploymentStatus is the most recently observed status of the Deployment.

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

Properties

View Source

AvailableReplicas

Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

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

CollisionCount

Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

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

Conditions

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

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

ObservedGeneration

The generation observed by the deployment controller.

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

ReadyReplicas

Total number of ready pods targeted by this deployment.

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

Replicas

Total number of non-terminated pods targeted by this deployment (their labels match the selector).

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

UnavailableReplicas

Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

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

UpdatedReplicas

Total number of non-terminated pods targeted by this deployment that have the desired template spec.

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