mirror of https://github.com/k3s-io/k3s
Selector operator strings should all be lowercase to be consistent with other operators.
parent
9162cde8c8
commit
6b34a2bac6
|
@ -72,8 +72,8 @@ const (
|
||||||
NotEqualsOperator Operator = "!="
|
NotEqualsOperator Operator = "!="
|
||||||
NotInOperator Operator = "notin"
|
NotInOperator Operator = "notin"
|
||||||
ExistsOperator Operator = "exists"
|
ExistsOperator Operator = "exists"
|
||||||
GreaterThanOperator Operator = "Gt"
|
GreaterThanOperator Operator = "gt"
|
||||||
LessThanOperator Operator = "Lt"
|
LessThanOperator Operator = "lt"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewSelector() Selector {
|
func NewSelector() Selector {
|
||||||
|
|
Loading…
Reference in New Issue