case class NodeStatus(addresses: Optional[Vector[NodeAddress]] = Optional.Absent, allocatable: Optional[Map[String, Quantity]] = Optional.Absent, capacity: Optional[Map[String, Quantity]] = Optional.Absent, conditions: Optional[Vector[NodeCondition]] = Optional.Absent, config: Optional[NodeConfigStatus] = Optional.Absent, daemonEndpoints: Optional[NodeDaemonEndpoints] = Optional.Absent, images: Optional[Vector[ContainerImage]] = Optional.Absent, nodeInfo: Optional[NodeSystemInfo] = Optional.Absent, phase: Optional[String] = Optional.Absent, volumesAttached: Optional[Vector[AttachedVolume]] = Optional.Absent, volumesInUse: Optional[Vector[String]] = Optional.Absent) extends Product with Serializable
NodeStatus is information about the current status of a node.
- addresses
List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.
- allocatable
Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.
- capacity
Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
- conditions
Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition
- images
List of container images on this node
- phase
NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.
- volumesAttached
List of volumes that are attached to the node.
- volumesInUse
List of attachable volumes in use (mounted) by the node.
- Alphabetic
- By Inheritance
- NodeStatus
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
NodeStatus(addresses: Optional[Vector[NodeAddress]] = Optional.Absent, allocatable: Optional[Map[String, Quantity]] = Optional.Absent, capacity: Optional[Map[String, Quantity]] = Optional.Absent, conditions: Optional[Vector[NodeCondition]] = Optional.Absent, config: Optional[NodeConfigStatus] = Optional.Absent, daemonEndpoints: Optional[NodeDaemonEndpoints] = Optional.Absent, images: Optional[Vector[ContainerImage]] = Optional.Absent, nodeInfo: Optional[NodeSystemInfo] = Optional.Absent, phase: Optional[String] = Optional.Absent, volumesAttached: Optional[Vector[AttachedVolume]] = Optional.Absent, volumesInUse: Optional[Vector[String]] = Optional.Absent)
- addresses
List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.
- allocatable
Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.
- capacity
Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
- conditions
Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition
- images
List of container images on this node
- phase
NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.
- volumesAttached
List of volumes that are attached to the node.
- volumesInUse
List of attachable volumes in use (mounted) by the node.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val addresses: Optional[Vector[NodeAddress]]
- val allocatable: Optional[Map[String, Quantity]]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- val capacity: Optional[Map[String, Quantity]]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val conditions: Optional[Vector[NodeCondition]]
- val config: Optional[NodeConfigStatus]
- val daemonEndpoints: Optional[NodeDaemonEndpoints]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
getAddresses: IO[K8sFailure, Vector[NodeAddress]]
List of addresses reachable to the node.
List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getAllocatable: IO[K8sFailure, Map[String, Quantity]]
Allocatable represents the resources of a node that are available for scheduling.
Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getCapacity: IO[K8sFailure, Map[String, Quantity]]
Capacity represents the total resources of a node.
Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
getConditions: IO[K8sFailure, Vector[NodeCondition]]
Conditions is an array of current observed node conditions.
Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getConfig: IO[K8sFailure, NodeConfigStatus]
Gets config.
Gets config.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getDaemonEndpoints: IO[K8sFailure, NodeDaemonEndpoints]
Gets daemonEndpoints.
Gets daemonEndpoints.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getImages: IO[K8sFailure, Vector[ContainerImage]]
List of container images on this node
List of container images on this node
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getNodeInfo: IO[K8sFailure, NodeSystemInfo]
Gets nodeInfo.
Gets nodeInfo.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getPhase: IO[K8sFailure, String]
NodePhase is the recently observed lifecycle phase of the node.
NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getVolumesAttached: IO[K8sFailure, Vector[AttachedVolume]]
List of volumes that are attached to the node.
List of volumes that are attached to the node.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getVolumesInUse: IO[K8sFailure, Vector[String]]
List of attachable volumes in use (mounted) by the node.
List of attachable volumes in use (mounted) by the node.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val images: Optional[Vector[ContainerImage]]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val nodeInfo: Optional[NodeSystemInfo]
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val phase: Optional[String]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val volumesAttached: Optional[Vector[AttachedVolume]]
- val volumesInUse: Optional[Vector[String]]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated