pub struct MachineStatusNodeInfo {
pub architecture: String,
pub boot_id: String,
pub container_runtime_version: String,
pub kernel_version: String,
pub kube_proxy_version: String,
pub kubelet_version: String,
pub machine_id: String,
pub operating_system: String,
pub os_image: String,
pub system_uuid: String,
}Expand description
nodeInfo is a set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info
Fields§
§architecture: StringThe Architecture reported by the node
boot_id: StringBoot ID reported by the node.
container_runtime_version: StringContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).
kernel_version: StringKernel Version reported by the node from ‘uname -r’ (e.g. 3.16.0-0.bpo.4-amd64).
kube_proxy_version: StringDeprecated: KubeProxy Version reported by the node.
kubelet_version: StringKubelet Version reported by the node.
machine_id: StringMachineID 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
operating_system: StringThe Operating System reported by the node
os_image: StringOS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
system_uuid: StringSystemUUID 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
Trait Implementations§
Source§impl Clone for MachineStatusNodeInfo
impl Clone for MachineStatusNodeInfo
Source§fn clone(&self) -> MachineStatusNodeInfo
fn clone(&self) -> MachineStatusNodeInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for MachineStatusNodeInfo
impl Debug for MachineStatusNodeInfo
Source§impl Default for MachineStatusNodeInfo
impl Default for MachineStatusNodeInfo
Source§fn default() -> MachineStatusNodeInfo
fn default() -> MachineStatusNodeInfo
Source§impl<'de> Deserialize<'de> for MachineStatusNodeInfo
impl<'de> Deserialize<'de> for MachineStatusNodeInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for MachineStatusNodeInfo
impl JsonSchema for MachineStatusNodeInfo
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref keyword. Read moreSource§impl PartialEq for MachineStatusNodeInfo
impl PartialEq for MachineStatusNodeInfo
Source§impl Serialize for MachineStatusNodeInfo
impl Serialize for MachineStatusNodeInfo
impl StructuralPartialEq for MachineStatusNodeInfo
Auto Trait Implementations§
impl Freeze for MachineStatusNodeInfo
impl RefUnwindSafe for MachineStatusNodeInfo
impl Send for MachineStatusNodeInfo
impl Sync for MachineStatusNodeInfo
impl Unpin for MachineStatusNodeInfo
impl UnwindSafe for MachineStatusNodeInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more