Show / Hide Table of Contents

Class V1DeploymentStatus

DeploymentStatus is the most recently observed status of the Deployment.

Inheritance
object
V1DeploymentStatus
Implements
IEquatable<V1DeploymentStatus>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
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
Type Name Description
V1DeploymentStatus original

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
Type Description
int?
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
Type Description
int?
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
Type Description
IList<V1DeploymentCondition>
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
View Source

ObservedGeneration

The generation observed by the deployment controller.

Declaration
[JsonPropertyName("observedGeneration")]
public long? ObservedGeneration { get; set; }
Property Value
Type Description
long?
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
Type Description
int?
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
Type Description
int?
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
Type Description
int?
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
Type Description
int?
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
Type Description
int?

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1DeploymentStatus?)

Declaration
public virtual bool Equals(V1DeploymentStatus? other)
Parameters
Type Name Description
V1DeploymentStatus other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1DeploymentStatus?, V1DeploymentStatus?)

Declaration
public static bool operator ==(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Type Name Description
V1DeploymentStatus left
V1DeploymentStatus right
Returns
Type Description
bool
View Source

operator !=(V1DeploymentStatus?, V1DeploymentStatus?)

Declaration
public static bool operator !=(V1DeploymentStatus? left, V1DeploymentStatus? right)
Parameters
Type Name Description
V1DeploymentStatus left
V1DeploymentStatus right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX