FieldSelectorRequirementV1 Properties
Class Properties 3 members
Represents a requirement used in a field selector in Kubernetes resources. This class is used to specify a filtering condition based on certain attributes or values of a Kubernetes resource.
Gets or sets the key used in the field selector requirement. Represents the field key to match within the Kubernetes resource.
public string Key { get; set; } Gets or sets the operator used to compare a field key against specified values.
public string Operator { get; set; }Remarks
The value of this property defines the logical operator to be applied in the field selector requirement. Commonly used operators include "In", "NotIn", "Exists", and "DoesNotExist".
Gets the list of values associated with this field selector requirement.
public List<string> Values { get; }Remarks
This property represents the collection of values that correspond to the specified key and operator in the field selector requirement. These values are used to match specific criteria or conditions in Kubernetes resources.