We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent facfa0a commit 6b3f78bCopy full SHA for 6b3f78b
rust/crd/src/lib.rs
@@ -25,11 +25,7 @@ use stackable_operator::{
25
resources::{CpuLimits, MemoryLimits, Resources},
26
s3::{S3AccessStyle, S3ConnectionDef, S3ConnectionSpec},
27
},
28
- config::{
29
- fragment,
30
- fragment::ValidationError,
31
- merge::{Atomic, Merge},
32
- },
+ config::{fragment, fragment::ValidationError, merge::Merge},
33
k8s_openapi::{
34
api::core::v1::{EmptyDirVolumeSource, EnvVar, PodTemplateSpec, Volume, VolumeMount},
35
apimachinery::pkg::api::resource::Quantity,
@@ -887,14 +883,6 @@ fn resources_to_executor_props(
887
883
Ok(())
888
884
}
889
885
890
-#[derive(Clone, Debug, Default, Deserialize, Eq, JsonSchema, PartialEq, Serialize)]
891
-#[serde(rename_all = "camelCase")]
892
-pub struct NodeSelector {
893
- pub node_selector: Option<BTreeMap<String, String>>,
894
-}
895
-
896
-impl Atomic for NodeSelector {}
897
898
886
#[cfg(test)]
899
mod tests {
900
use crate::{cores_from_quantity, resources_to_executor_props, DriverConfig, ExecutorConfig};
0 commit comments