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 25c05b9 commit e08b1baCopy full SHA for e08b1ba
rust/operator-binary/src/crd/mod.rs
@@ -230,11 +230,17 @@ pub mod versioned {
230
pub struct TrinoConfig {
231
// config.properties
232
pub query_max_memory: Option<String>,
233
+
234
pub query_max_memory_per_node: Option<String>,
235
236
#[fragment_attrs(serde(default))]
237
pub logging: Logging<Container>,
238
239
+ // We need to provide *something* that implements `Fragment`, so we pick an empty struct here.
240
+ // Note that a unit "()" would not work, as we need something that implements `Fragment`.
241
242
pub resources: Resources<TrinoStorageConfig, NoRuntimeLimits>,
243
244
245
pub affinity: StackableAffinity,
246
0 commit comments