Skip to content

Commit c6cae70

Browse files
committed
Add some CRD docs
1 parent c26e533 commit c6cae70

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/stackable-operator/src/role_utils.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,17 @@ pub struct JavaCommonConfig {
188188
#[derive(Clone, Debug, Default, Deserialize, JsonSchema, PartialEq, Serialize)]
189189
#[serde(rename_all = "camelCase")]
190190
pub struct JvmArgumentOverrides {
191+
/// JVM arguments to be added
191192
#[serde(default)]
192193
add: Vec<String>,
193194

195+
/// JVM arguments to be removed by exact match
196+
//
194197
// HashSet to be optimized for quick lookup
195198
#[serde(default)]
196199
remove: HashSet<String>,
197200

201+
/// JVM arguments matching any of this regexes will be removed
198202
#[serde(default)]
199203
remove_regex: Vec<String>,
200204
}

0 commit comments

Comments
 (0)