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
- val addresses: Optional[Vector[NodeAddress]]
- val allocatable: Optional[Map[String, Quantity]]
- val capacity: Optional[Map[String, Quantity]]
- val conditions: Optional[Vector[NodeCondition]]
- val config: Optional[NodeConfigStatus]
- val daemonEndpoints: Optional[NodeDaemonEndpoints]
-
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.
-
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]]
- val nodeInfo: Optional[NodeSystemInfo]
- val phase: Optional[String]
- val volumesAttached: Optional[Vector[AttachedVolume]]
- val volumesInUse: Optional[Vector[String]]