case class Node(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NodeSpec] = Optional.Absent, status: Optional[NodeStatus] = Optional.Absent) extends Product with Serializable
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Node
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Node(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[NodeSpec] = Optional.Absent, status: Optional[NodeStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, NodeSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, NodeStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: Optional[NodeSpec]
- val status: Optional[NodeStatus]