Struct k8s_openapi::api::resource::v1alpha1::PodSchedulingSpec
source · pub struct PodSchedulingSpec {
pub potential_nodes: Option<Vec<String>>,
pub selected_node: Option<String>,
}
Expand description
PodSchedulingSpec describes where resources for the Pod are needed.
Fields§
§potential_nodes: Option<Vec<String>>
PotentialNodes lists nodes where the Pod might be able to run.
The size of this field is limited to 128. This is large enough for many clusters. Larger clusters may need more attempts to find a node that suits all pending resources. This may get increased in the future, but not reduced.
selected_node: Option<String>
SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use “WaitForFirstConsumer” allocation is to be attempted.
Trait Implementations§
source§impl Clone for PodSchedulingSpec
impl Clone for PodSchedulingSpec
source§fn clone(&self) -> PodSchedulingSpec
fn clone(&self) -> PodSchedulingSpec
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PodSchedulingSpec
impl Debug for PodSchedulingSpec
source§impl DeepMerge for PodSchedulingSpec
impl DeepMerge for PodSchedulingSpec
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for PodSchedulingSpec
impl Default for PodSchedulingSpec
source§fn default() -> PodSchedulingSpec
fn default() -> PodSchedulingSpec
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PodSchedulingSpec
impl<'de> Deserialize<'de> for PodSchedulingSpec
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<PodSchedulingSpec> for PodSchedulingSpec
impl PartialEq<PodSchedulingSpec> for PodSchedulingSpec
source§fn eq(&self, other: &PodSchedulingSpec) -> bool
fn eq(&self, other: &PodSchedulingSpec) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.