Struct k8s_openapi_ext::storagev1::CSINodeDriver
source · [−]pub struct CSINodeDriver {
pub allocatable: Option<VolumeNodeResources>,
pub name: String,
pub node_id: String,
pub topology_keys: Option<Vec<String, Global>>,
}
Expand description
CSINodeDriver holds information about the specification of one CSI driver installed on a node
Fields
allocatable: Option<VolumeNodeResources>
allocatable represents the volume resources of a node that are available for scheduling. This field is beta.
name: String
This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.
node_id: String
nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as “node1”, but the storage system may refer to the same node as “nodeA”. When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. “nodeA” instead of “node1”. This field is required.
topology_keys: Option<Vec<String, Global>>
topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. “company.com/zone”, “company.com/region”). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.
Trait Implementations
sourceimpl Clone for CSINodeDriver
impl Clone for CSINodeDriver
sourcefn clone(&self) -> CSINodeDriver
fn clone(&self) -> CSINodeDriver
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CSINodeDriver
impl Debug for CSINodeDriver
sourceimpl Default for CSINodeDriver
impl Default for CSINodeDriver
sourcefn default() -> CSINodeDriver
fn default() -> CSINodeDriver
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CSINodeDriver
impl<'de> Deserialize<'de> for CSINodeDriver
sourcefn deserialize<D>(
deserializer: D
) -> Result<CSINodeDriver, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<CSINodeDriver, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<CSINodeDriver> for CSINodeDriver
impl PartialEq<CSINodeDriver> for CSINodeDriver
sourcefn eq(&self, other: &CSINodeDriver) -> bool
fn eq(&self, other: &CSINodeDriver) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for CSINodeDriver
impl Serialize for CSINodeDriver
sourcefn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CSINodeDriver
Auto Trait Implementations
impl RefUnwindSafe for CSINodeDriver
impl Send for CSINodeDriver
impl Sync for CSINodeDriver
impl Unpin for CSINodeDriver
impl UnwindSafe for CSINodeDriver
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more