Class V1DeploymentStatus
DeploymentStatus is the most recently observed status of the Deployment.
Inheritance
V1DeploymentStatus
Assembly: KubernetesClient.dll
Syntax
public record V1DeploymentStatus : IEquatable<V1DeploymentStatus>
Constructors
V1DeploymentStatus()
Declaration
public V1DeploymentStatus()
V1DeploymentStatus(V1DeploymentStatus)
Declaration
protected V1DeploymentStatus(V1DeploymentStatus original)
Parameters
Properties
AvailableReplicas
Total number of available non-terminating pods (ready for at least
minReadySeconds) targeted by this deployment.
Declaration
[JsonPropertyName("availableReplicas")]
public int? AvailableReplicas { get; set; }
Property Value
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
[JsonPropertyName("collisionCount")]
public int? CollisionCount { get; set; }
Property Value
Conditions
Represents the latest available observations of a deployment's current state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1DeploymentCondition> Conditions { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
ObservedGeneration
The generation observed by the deployment controller.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
ReadyReplicas
Total number of non-terminating pods targeted by this Deployment with a Ready
Condition.
Declaration
[JsonPropertyName("readyReplicas")]
public int? ReadyReplicas { get; set; }
Property Value
Replicas
Total number of non-terminating pods targeted by this deployment (their labels
match the selector).
Declaration
[JsonPropertyName("replicas")]
public int? Replicas { get; set; }
Property Value
TerminatingReplicas
Total number of terminating pods targeted by this deployment. Terminating pods
have a non-null .metadata.deletionTimestamp and have not yet reached the Failed
or Succeeded .status.phase.
This is a beta field and requires enabling
DeploymentReplicaSetTerminatingReplicas feature (enabled by default).
Declaration
[JsonPropertyName("terminatingReplicas")]
public int? TerminatingReplicas { get; set; }
Property Value
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
[JsonPropertyName("unavailableReplicas")]
public int? UnavailableReplicas { get; set; }
Property Value
UpdatedReplicas
Total number of non-terminating pods targeted by this deployment that have the
desired template spec.
Declaration
[JsonPropertyName("updatedReplicas")]
public int? UpdatedReplicas { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1DeploymentStatus?)
Declaration
public virtual bool Equals(V1DeploymentStatus? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1DeploymentStatus?, V1DeploymentStatus?)
Declaration
public static bool operator ==(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Returns
operator !=(V1DeploymentStatus?, V1DeploymentStatus?)
Declaration
public static bool operator !=(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Returns
Implements