Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LabelSelector ¶
type LabelSelectorFilters ¶
type LabelSelectorParser ¶
type LabelSelectorParser interface {
Parse(labelSelector string) (LabelSelectorFilters, error)
}
func NewLabelSelectorParser ¶
func NewLabelSelectorParser() LabelSelectorParser
type LabelSelectorSlice ¶
type LabelSelectorSlice []LabelSelector
type Operator ¶
type Operator string
const ( Exists Operator = "" NotExists Operator = "!" Eq Operator = "=" EqAlt Operator = "==" NotEq Operator = "!=" In Operator = "in" NotIn Operator = "notin" AllowedChars = "[[:alnum:]][[:alnum:]._-]*" // allow chars in keys: a-z,A-z,0-9,-,_,. AllowedCharsWithComma = "[[:alnum:]][[:alnum:]._,-]*" // in clauses can contain commas )
Source Files ¶
Click to show internal directories.
Click to hide internal directories.