TopologySelectorLabelRequirement

case class TopologySelectorLabelRequirement(key: String, values: Vector[String])

A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.

Value Params
key

The label key that the selector applies to.

values

An array of string values. One value must match the label to be selected. Each entry in Values is ORed.

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

Value members

Concrete methods

def getKey: IO[K8sFailure, String]

The label key that the selector applies to.

The label key that the selector applies to.

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

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

An array of string values. One value must match the label to be selected. Each entry in Values is ORed.

An array of string values. One value must match the label to be selected. Each entry in Values is ORed.

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

Inherited methods

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