Class V1PodAffinityTerm
Defines a set of pods (namely those matching the labelSelector relative to the
given namespace(s)) that this pod should be co-located (affinity) or not
co-located (anti-affinity) with, where co-located is defined as running on a
node whose value of the label with key <topologyKey> matches that of any node on
which a pod of the set of pods is running
Inheritance
V1PodAffinityTerm
Assembly: KubernetesClient.dll
Syntax
public record V1PodAffinityTerm : IEquatable<V1PodAffinityTerm>
Constructors
View Source
V1PodAffinityTerm()
Declaration
public V1PodAffinityTerm()
View Source
V1PodAffinityTerm(V1PodAffinityTerm)
Declaration
protected V1PodAffinityTerm(V1PodAffinityTerm original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
LabelSelector
A label query over a set of resources, in this case pods. If it's null, this
PodAffinityTerm matches with no Pods.
Declaration
[JsonPropertyName("labelSelector")]
public V1LabelSelector LabelSelector { get; set; }
Property Value
View Source
MatchLabelKeys
MatchLabelKeys is a set of pod label keys to select which pods will be taken
into consideration. The keys are used to lookup values from the incoming pod
labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into
consideration for the incoming pod's pod (anti) affinity. Keys that don't exist
in the incoming pod labels will be ignored. The default value is empty. The same
key is forbidden to exist in both matchLabelKeys and labelSelector. Also,
matchLabelKeys cannot be set when labelSelector isn't set.
Declaration
[JsonPropertyName("matchLabelKeys")]
public IList<string> MatchLabelKeys { get; set; }
Property Value
View Source
MismatchLabelKeys
MismatchLabelKeys is a set of pod label keys to select which pods will be taken
into consideration. The keys are used to lookup values from the incoming pod
labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into
consideration for the incoming pod's pod (anti) affinity. Keys that don't exist
in the incoming pod labels will be ignored. The default value is empty. The same
key is forbidden to exist in both mismatchLabelKeys and labelSelector. Also,
mismatchLabelKeys cannot be set when labelSelector isn't set.
Declaration
[JsonPropertyName("mismatchLabelKeys")]
public IList<string> MismatchLabelKeys { get; set; }
Property Value
View Source
NamespaceSelector
A label query over the set of namespaces that the term applies to. The term is
applied to the union of the namespaces selected by this field and the ones
listed in the namespaces field. null selector and null or empty namespaces list
means "this pod's namespace". An empty selector ({}) matches all namespaces.
Declaration
[JsonPropertyName("namespaceSelector")]
public V1LabelSelector NamespaceSelector { get; set; }
Property Value
View Source
Namespaces
namespaces specifies a static list of namespace names that the term applies to.
The term is applied to the union of the namespaces listed in this field and the
ones selected by namespaceSelector. null or empty namespaces list and null
namespaceSelector means "this pod's namespace".
Declaration
[JsonPropertyName("namespaces")]
public IList<string> Namespaces { get; set; }
Property Value
View Source
TopologyKey
This pod should be co-located (affinity) or not co-located (anti-affinity) with
the pods matching the labelSelector in the specified namespaces, where
co-located is defined as running on a node whose value of the label with key
topologyKey matches that of any node on which any of the selected pods is
running. Empty topologyKey is not allowed.
Declaration
[JsonPropertyName("topologyKey")]
public string TopologyKey { 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(V1PodAffinityTerm?)
Declaration
public virtual bool Equals(V1PodAffinityTerm? 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 ==(V1PodAffinityTerm?, V1PodAffinityTerm?)
Declaration
public static bool operator ==(V1PodAffinityTerm? left, V1PodAffinityTerm? right)
Parameters
Returns
View Source
operator !=(V1PodAffinityTerm?, V1PodAffinityTerm?)
Declaration
public static bool operator !=(V1PodAffinityTerm? left, V1PodAffinityTerm? right)
Parameters
Returns
Implements