Show / Hide Table of Contents

Class DeploymentStatus

DeploymentStatus is the most recently observed status of the Deployment.

Inheritance
System.Object
DeploymentStatus
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.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class DeploymentStatus

Fields

View Source

AvailableReplicas

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

Declaration
public readonly int AvailableReplicas
Field Value
Type Description
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 readonly int CollisionCount
Field Value
Type Description
System.Int32
View Source

Conditions

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

Declaration
public readonly ImmutableArray<DeploymentCondition> Conditions
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<DeploymentCondition>
View Source

ObservedGeneration

The generation observed by the deployment controller.

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

ReadyReplicas

Total number of ready pods targeted by this deployment.

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

Replicas

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

Declaration
public readonly int Replicas
Field Value
Type Description
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 readonly int UnavailableReplicas
Field Value
Type Description
System.Int32
View Source

UpdatedReplicas

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

Declaration
public readonly int UpdatedReplicas
Field Value
Type Description
System.Int32
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.