Enum LabelSelectorOptions
LabelSelector<TItem> related options.
Namespace: Neon.Common
Assembly: Neon.Common.dll
Syntax
[Flags]
public enum LabelSelectorOptions
Fields
Name | Description |
---|---|
CaseInsensitiveValues | Normally LabelSelector<TItem> matches label values using case sensitive comparisons. Use this to make the comparisons case insensitive. noteLabel name case sensitivity is determined by the the dictionaries returned by the item GetLabels() method. |
None | No options are selected. |
UnConstraintedLabels | LabelSelector<TItem> defaults to parsing label names and values to ensure that they are Kubernetes compliant. Use this to disable this so you can use arbitrary labels. |