LabelSelectorRequirement

case class LabelSelectorRequirement(key: String, operator: String, values: Optional[Vector[String]])

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

Value Params
key

key is the label key that the selector applies to.

operator

operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.

values

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getKey: IO[K8sFailure, String]

key is the label key that the selector applies to.

key is the label key that the selector applies to.

This effect always succeeds, it is safe to use the field key directly.

def getOperator: IO[K8sFailure, String]

operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.

operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.

This effect always succeeds, it is safe to use the field operator directly.

def getValues: IO[K8sFailure, Vector[String]]

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product