Class V1DeploymentStatus
DeploymentStatus is the most recently observed status of the Deployment.
Inheritance
V1DeploymentStatus
Assembly: KubernetesClient.dll
Syntax
public record V1DeploymentStatus : IEquatable<V1DeploymentStatus>
Constructors
View Source
V1DeploymentStatus()
Declaration
public V1DeploymentStatus()
View Source
V1DeploymentStatus(V1DeploymentStatus)
Declaration
protected V1DeploymentStatus(V1DeploymentStatus original)
Parameters
Properties
View Source
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
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
[JsonPropertyName("collisionCount")]
public int? CollisionCount { get; set; }
Property Value
View Source
Conditions
Represents the latest available observations of a deployment's current state.
Declaration
[JsonPropertyName("conditions")]
public IList<V1DeploymentCondition> Conditions { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
ObservedGeneration
The generation observed by the deployment controller.
Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
View Source
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
View Source
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
View Source
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 an alpha field. Enable DeploymentReplicaSetTerminatingReplicas to be
able to use this field.
Declaration
[JsonPropertyName("terminatingReplicas")]
public int? TerminatingReplicas { get; set; }
Property Value
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
[JsonPropertyName("unavailableReplicas")]
public int? UnavailableReplicas { get; set; }
Property Value
View Source
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
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1DeploymentStatus?)
Declaration
public virtual bool Equals(V1DeploymentStatus? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1DeploymentStatus?, V1DeploymentStatus?)
Declaration
public static bool operator ==(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Returns
View Source
operator !=(V1DeploymentStatus?, V1DeploymentStatus?)
Declaration
public static bool operator !=(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Returns
Implements