Toleration

io.k8s.api.core.v1.Toleration
See theToleration companion object
final case class Toleration(effect: Option[String], key: Option[String], tolerationSeconds: Option[Long], 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 <operator>.

Attributes

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

Members list

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Source
Toleration.scala

Returns a new data with effect set to new value

Returns a new data with effect set to new value

Attributes

Source
Toleration.scala
def withKey(value: String): Toleration

Returns a new data with key set to new value

Returns a new data with key set to new value

Attributes

Source
Toleration.scala

Returns a new data with operator set to new value

Returns a new data with operator set to new value

Attributes

Source
Toleration.scala

Returns a new data with tolerationSeconds set to new value

Returns a new data with tolerationSeconds set to new value

Attributes

Source
Toleration.scala
def withValue(value: String): Toleration

Returns a new data with value set to new value

Returns a new data with value set to new value

Attributes

Source
Toleration.scala

Inherited methods

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product