Packages

case class NodeSpec(configSource: Optional[NodeConfigSource] = Optional.Absent, externalID: Optional[String] = Optional.Absent, podCIDR: Optional[String] = Optional.Absent, podCIDRs: Optional[Vector[String]] = Optional.Absent, providerID: Optional[String] = Optional.Absent, taints: Optional[Vector[Taint]] = Optional.Absent, unschedulable: Optional[Boolean] = Optional.Absent) extends Product with Serializable

NodeSpec describes the attributes that a node is created with.

externalID

Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966

podCIDR

PodCIDR represents the pod IP range assigned to the node.

podCIDRs

podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.

providerID

ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

taints

If specified, the node's taints.

unschedulable

Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeSpec
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NodeSpec(configSource: Optional[NodeConfigSource] = Optional.Absent, externalID: Optional[String] = Optional.Absent, podCIDR: Optional[String] = Optional.Absent, podCIDRs: Optional[Vector[String]] = Optional.Absent, providerID: Optional[String] = Optional.Absent, taints: Optional[Vector[Taint]] = Optional.Absent, unschedulable: Optional[Boolean] = Optional.Absent)

    externalID

    Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966

    podCIDR

    PodCIDR represents the pod IP range assigned to the node.

    podCIDRs

    podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.

    providerID

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    taints

    If specified, the node's taints.

    unschedulable

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. val configSource: Optional[NodeConfigSource]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. val externalID: Optional[String]
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def getConfigSource: IO[K8sFailure, NodeConfigSource]

    Gets configSource.

    Gets configSource.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  11. def getExternalID: IO[K8sFailure, String]

    Deprecated.

    Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  12. def getPodCIDR: IO[K8sFailure, String]

    PodCIDR represents the pod IP range assigned to the node.

    PodCIDR represents the pod IP range assigned to the node.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  13. def getPodCIDRs: IO[K8sFailure, Vector[String]]

    podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node.

    podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  14. def getProviderID: IO[K8sFailure, String]

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  15. def getTaints: IO[K8sFailure, Vector[Taint]]

    If specified, the node's taints.

    If specified, the node's taints.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  16. def getUnschedulable: IO[K8sFailure, Boolean]

    Unschedulable controls node schedulability of new pods.

    Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. val podCIDR: Optional[String]
  22. val podCIDRs: Optional[Vector[String]]
  23. val providerID: Optional[String]
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. val taints: Optional[Vector[Taint]]
  26. val unschedulable: Optional[Boolean]
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped