Class DeploymentStatus
DeploymentStatus is the most recently observed status of the Deployment.
Inheritance
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Outputs.Extensions.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class DeploymentStatus
Fields
View SourceAvailableReplicas
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 |
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 |
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> |
ObservedGeneration
The generation observed by the deployment controller.
Declaration
public readonly int ObservedGeneration
Field Value
| Type | Description |
|---|---|
| System.Int32 |
ReadyReplicas
Total number of ready pods targeted by this deployment.
Declaration
public readonly int ReadyReplicas
Field Value
| Type | Description |
|---|---|
| System.Int32 |
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 |
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 |
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 |