Node

final case class Node(status: Option[NodeStatus], spec: Option[NodeSpec], metadata: Option[ObjectMeta]) extends KObject

Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

Companion:
object
Source:
Node.scala
trait KObject
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

override def foldTo[T : Builder]: T
Definition Classes
Source:
Node.scala

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

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

Source:
Node.scala

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

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

Source:
Node.scala

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

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

Source:
Node.scala

Returns a new data with metadata set to new value

Returns a new data with metadata set to new value

Source:
Node.scala
def withSpec(value: NodeSpec): Node

Returns a new data with spec set to new value

Returns a new data with spec set to new value

Source:
Node.scala

Returns a new data with status set to new value

Returns a new data with status set to new value

Source:
Node.scala

Inherited methods

final def group: String
Inherited from:
KObject
Source:
ResourceKind.scala
Inherited from:
Product

Inherited fields

final lazy val apiVersion: String
Inherited from:
KObject
Source:
ResourceKind.scala
final lazy val kind: String
Inherited from:
KObject
Source:
ResourceKind.scala
final lazy val version: String
Inherited from:
KObject
Source:
ResourceKind.scala