Class V1alpha2PodGroupStatus
PodGroupStatus represents information about the status of a pod group.
Inheritance
V1alpha2PodGroupStatus
Assembly: KubernetesClient.dll
Syntax
public record V1alpha2PodGroupStatus : IEquatable<V1alpha2PodGroupStatus>
Constructors
V1alpha2PodGroupStatus()
Declaration
public V1alpha2PodGroupStatus()
V1alpha2PodGroupStatus(V1alpha2PodGroupStatus)
Declaration
protected V1alpha2PodGroupStatus(V1alpha2PodGroupStatus original)
Parameters
Properties
Conditions
Conditions represent the latest observations of the PodGroup's state.
Known condition types: - "PodGroupScheduled": Indicates whether the scheduling
requirement has been satisfied. - "DisruptionTarget": Indicates whether the
PodGroup is about to be terminated
due to disruption such as preemption.
Known reasons for the PodGroupScheduled condition: - "Unschedulable": The
PodGroup cannot be scheduled due to resource constraints,
affinity/anti-affinity rules, or insufficient capacity for the gang.
- "SchedulerError": The PodGroup cannot be scheduled due to some internal error
that happened during scheduling, for example due to nodeAffinity parsing errors.
Known reasons for the DisruptionTarget condition: - "PreemptionByScheduler": The
PodGroup was preempted by the scheduler to make room for
higher-priority PodGroups or Pods.
Declaration
[JsonPropertyName("conditions")]
public IList<V1Condition> Conditions { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
ResourceClaimStatuses
Status of resource claims.
Declaration
[JsonPropertyName("resourceClaimStatuses")]
public IList<V1alpha2PodGroupResourceClaimStatus> ResourceClaimStatuses { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1alpha2PodGroupStatus?)
Declaration
public virtual bool Equals(V1alpha2PodGroupStatus? 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 ==(V1alpha2PodGroupStatus?, V1alpha2PodGroupStatus?)
Declaration
public static bool operator ==(V1alpha2PodGroupStatus? left, V1alpha2PodGroupStatus? right)
Parameters
Returns
operator !=(V1alpha2PodGroupStatus?, V1alpha2PodGroupStatus?)
Declaration
public static bool operator !=(V1alpha2PodGroupStatus? left, V1alpha2PodGroupStatus? right)
Parameters
Returns
Implements