Scheduling

io.k8s.api.node.v1.Scheduling
See theScheduling companion object
final case class Scheduling(nodeSelector: Option[Map[String, String]], tolerations: Option[Seq[Toleration]])

Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.

Attributes

Companion
object
Source
Scheduling.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addNodeSelector(newValues: (String, String)*): Scheduling

Adds new values to nodeSelector

Adds new values to nodeSelector

Attributes

Source
Scheduling.scala

Appends new values to tolerations

Appends new values to tolerations

Attributes

Source
Scheduling.scala
def mapNodeSelector(f: (Map[String, String]) => Map[String, String]): Scheduling

if nodeSelector has a value, transforms to the result of function

if nodeSelector has a value, transforms to the result of function

Attributes

Source
Scheduling.scala

if tolerations has a value, transforms to the result of function

if tolerations has a value, transforms to the result of function

Attributes

Source
Scheduling.scala
def withNodeSelector(value: Map[String, String]): Scheduling

Returns a new data with nodeSelector set to new value

Returns a new data with nodeSelector set to new value

Attributes

Source
Scheduling.scala

Returns a new data with tolerations set to new value

Returns a new data with tolerations set to new value

Attributes

Source
Scheduling.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product