@@ -301,50 +301,7 @@ impl StellarNodeSpec {
301301 /// ```rust,no_run
302302 /// use stellar_k8s::crd::StellarNodeSpec;
303303 ///
304- /// let spec = StellarNodeSpec {
305- /// // ... configuration
306- /// ..Default::default()
307- /// # node_type: Default::default(),
308- /// # network: Default::default(),
309- /// # version: "v21".to_string(),
310- /// # history_mode: Default::default(),
311- /// # resources: Default::default(),
312- /// # storage: Default::default(),
313- /// # validator_config: None,
314- /// # horizon_config: None,
315- /// # soroban_config: None,
316- /// # replicas: 1,
317- /// # min_available: None,
318- /// # max_unavailable: None,
319- /// # suspended: false,
320- /// # alerting: false,
321- /// # database: None,
322- /// # managed_database: None,
323- /// # autoscaling: None,
324- /// # ingress: None,
325- /// # load_balancer: None,
326- /// # global_discovery: None,
327- /// # cross_cluster: None,
328- /// # snapshot_schedule: None,
329- /// # restore_from_snapshot: None,
330- /// # strategy: Default::default(),
331- /// # maintenance_mode: false,
332- /// # network_policy: None,
333- /// # dr_config: None,
334- /// # pod_anti_affinity: Default::default(),
335- /// # topology_spread_constraints: None,
336- /// # cve_handling: None,
337- /// # read_replica_config: None,
338- /// # db_maintenance_config: None,
339- /// # oci_snapshot: None,
340- /// # service_mesh: None,
341- /// # forensic_snapshot: None,
342- /// # label_propagation: None,
343- /// # vpa_config: None,
344- /// # resource_meta: None,
345- /// # read_pool_endpoint: None,
346- /// # sidecars: None,
347- /// };
304+ /// let spec = StellarNodeSpec::default();
348305 /// match spec.validate() {
349306 /// Ok(_) => println!("Valid spec"),
350307 /// Err(errors) => {
0 commit comments