Struct k8s_openapi::v1_10::api::core::v1::NodeStatus[][src]

pub struct NodeStatus {
    pub addresses: Option<Vec<NodeAddress>>,
    pub allocatable: Option<BTreeMap<String, Quantity>>,
    pub capacity: Option<BTreeMap<String, Quantity>>,
    pub conditions: Option<Vec<NodeCondition>>,
    pub daemon_endpoints: Option<NodeDaemonEndpoints>,
    pub images: Option<Vec<ContainerImage>>,
    pub node_info: Option<NodeSystemInfo>,
    pub phase: Option<String>,
    pub volumes_attached: Option<Vec<AttachedVolume>>,
    pub volumes_in_use: Option<Vec<String>>,
}

NodeStatus is information about the current status of a node.

Fields

List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses

Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition

Endpoints of daemons running on the Node.

List of container images on this node

Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info

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.

List of volumes that are attached to the node.

List of attachable volumes in use (mounted) by the node.

Trait Implementations

impl Clone for NodeStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NodeStatus
[src]

Formats the value using the given formatter. Read more

impl Default for NodeStatus
[src]

Returns the "default value" for a type. Read more

impl PartialEq for NodeStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for NodeStatus
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NodeStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl Send for NodeStatus

impl Sync for NodeStatus