NodeSystemInfo

Struct NodeSystemInfo 

Source
pub struct NodeSystemInfo {
    pub machine_id: Option<String>,
    pub system_uuid: Option<String>,
    pub boot_id: Option<String>,
    pub kernel_version: Option<String>,
    pub os_image: Option<String>,
    pub container_runtime_version: Option<String>,
    pub kubelet_version: Option<String>,
    pub kube_proxy_version: Option<String>,
    pub operating_system: Option<String>,
    pub architecture: Option<String>,
    pub swap: Option<NodeSwapStatus>,
}
Expand description

NodeSystemInfo is a set of ids/uuids to uniquely identify the node.

Fields§

§machine_id: Option<String>

MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html

§system_uuid: Option<String>

SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid

§boot_id: Option<String>

Boot ID reported by the node.

§kernel_version: Option<String>

Kernel Version reported by the node from ‘uname -r’ (e.g. 3.16.0-0.bpo.4-amd64).

§os_image: Option<String>

OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

§container_runtime_version: Option<String>

ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).

§kubelet_version: Option<String>

Kubelet Version reported by the node.

§kube_proxy_version: Option<String>

Deprecated: KubeProxy Version reported by the node.

§operating_system: Option<String>

The Operating System reported by the node

§architecture: Option<String>

The Architecture reported by the node

§swap: Option<NodeSwapStatus>

Swap Info reported by the node.

Implementations§

Source§

impl NodeSystemInfo

Source

pub fn machine_id(&self) -> &str

Returns the value of machine_id, or the default value if machine_id is unset.

Source

pub fn system_uuid(&self) -> &str

Returns the value of system_uuid, or the default value if system_uuid is unset.

Source

pub fn boot_id(&self) -> &str

Returns the value of boot_id, or the default value if boot_id is unset.

Source

pub fn kernel_version(&self) -> &str

Returns the value of kernel_version, or the default value if kernel_version is unset.

Source

pub fn os_image(&self) -> &str

Returns the value of os_image, or the default value if os_image is unset.

Source

pub fn container_runtime_version(&self) -> &str

Returns the value of container_runtime_version, or the default value if container_runtime_version is unset.

Source

pub fn kubelet_version(&self) -> &str

Returns the value of kubelet_version, or the default value if kubelet_version is unset.

Source

pub fn kube_proxy_version(&self) -> &str

Returns the value of kube_proxy_version, or the default value if kube_proxy_version is unset.

Source

pub fn operating_system(&self) -> &str

Returns the value of operating_system, or the default value if operating_system is unset.

Source

pub fn architecture(&self) -> &str

Returns the value of architecture, or the default value if architecture is unset.

Trait Implementations§

Source§

impl Clone for NodeSystemInfo

Source§

fn clone(&self) -> NodeSystemInfo

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NodeSystemInfo

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NodeSystemInfo

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Hash for NodeSystemInfo

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Message for NodeSystemInfo

Source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
Source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
Source§

fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message to a buffer. Read more
Source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
Source§

fn encode_length_delimited( &self, buf: &mut impl BufMut, ) -> Result<(), EncodeError>
where Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
Source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
Source§

fn decode(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes an instance of the message from a buffer. Read more
Source§

fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default,

Decodes a length-delimited instance of the message from the buffer.
Source§

fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
Source§

fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>
where Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
Source§

impl PartialEq for NodeSystemInfo

Source§

fn eq(&self, other: &NodeSystemInfo) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for NodeSystemInfo

Source§

impl StructuralPartialEq for NodeSystemInfo

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.