Toleration

final case class Toleration(effect: Option[String], key: Option[String], tolerationSeconds: Option[Int], operator: Option[String], value: Option[String])

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator .

Source:
Toleration.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

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

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

Source:
Toleration.scala

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

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

Source:
Toleration.scala

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

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

Source:
Toleration.scala

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

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

Source:
Toleration.scala

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

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

Source:
Toleration.scala

Returns a new data with effect set to new value

Returns a new data with effect set to new value

Source:
Toleration.scala

Returns a new data with key set to new value

Returns a new data with key set to new value

Source:
Toleration.scala

Returns a new data with operator set to new value

Returns a new data with operator set to new value

Source:
Toleration.scala

Returns a new data with tolerationSeconds set to new value

Returns a new data with tolerationSeconds set to new value

Source:
Toleration.scala

Returns a new data with value set to new value

Returns a new data with value set to new value

Source:
Toleration.scala

Inherited methods

Inherited from:
Product