Class DeploymentStatusArgs
DeploymentStatus is the most recently observed status of the Deployment.
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Inputs.Apps.V1Beta2
Assembly: Pulumi.Kubernetes.dll
Syntax
public class DeploymentStatusArgs : ResourceArgs
Properties
View SourceAvailableReplicas
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> |
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> |
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> |
ObservedGeneration
The generation observed by the deployment controller.
Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
ReadyReplicas
Total number of ready pods targeted by this deployment.
Declaration
public Input<int> ReadyReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
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> |
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> |
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> |