Packages

final case class NodeSpec(externalID: Option[String] = None, taints: Option[Seq[Taint]] = None, configSource: Option[NodeConfigSource] = None, unschedulable: Option[Boolean] = None, podCIDR: Option[String] = None, providerID: Option[String] = None, podCIDRs: Option[Seq[String]] = None) extends Product with Serializable

NodeSpec describes the attributes that a node is created with.

Source
NodeSpec.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeSpec
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new NodeSpec(externalID: Option[String] = None, taints: Option[Seq[Taint]] = None, configSource: Option[NodeConfigSource] = None, unschedulable: Option[Boolean] = None, podCIDR: Option[String] = None, providerID: Option[String] = None, podCIDRs: Option[Seq[String]] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addPodCIDRs(newValues: String*): NodeSpec

    Appends new values to podCIDRs

  5. def addTaints(newValues: Taint*): NodeSpec

    Appends new values to taints

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. val configSource: Option[NodeConfigSource]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val externalID: Option[String]
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapConfigSource(f: (NodeConfigSource) => NodeConfigSource): NodeSpec

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

  15. def mapExternalID(f: (String) => String): NodeSpec

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

  16. def mapPodCIDR(f: (String) => String): NodeSpec

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

  17. def mapPodCIDRs(f: (Seq[String]) => Seq[String]): NodeSpec

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

  18. def mapProviderID(f: (String) => String): NodeSpec

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

  19. def mapTaints(f: (Seq[Taint]) => Seq[Taint]): NodeSpec

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

  20. def mapUnschedulable(f: (Boolean) => Boolean): NodeSpec

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

  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val podCIDR: Option[String]
  25. val podCIDRs: Option[Seq[String]]
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val providerID: Option[String]
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. val taints: Option[Seq[Taint]]
  30. val unschedulable: Option[Boolean]
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. def withConfigSource(value: NodeConfigSource): NodeSpec

    Returns a new data with configSource set to new value

  35. def withExternalID(value: String): NodeSpec

    Returns a new data with externalID set to new value

  36. def withPodCIDR(value: String): NodeSpec

    Returns a new data with podCIDR set to new value

  37. def withPodCIDRs(value: Seq[String]): NodeSpec

    Returns a new data with podCIDRs set to new value

  38. def withProviderID(value: String): NodeSpec

    Returns a new data with providerID set to new value

  39. def withTaints(value: Seq[Taint]): NodeSpec

    Returns a new data with taints set to new value

  40. def withUnschedulable(value: Boolean): NodeSpec

    Returns a new data with unschedulable set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped