Skip to content

Commit

Permalink
update op-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Jan 2, 2025
1 parent 4f98093 commit 6f125a3
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 49 deletions.
90 changes: 45 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deploy/helm/nifi-operator/crds/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ spec:
add: []
remove: []
removeRegex: []
description: Allows overriding JVM arguments.
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
properties:
add:
default: []
Expand Down Expand Up @@ -1144,7 +1144,7 @@ spec:
add: []
remove: []
removeRegex: []
description: Allows overriding JVM arguments.
description: Allows overriding JVM arguments. Please read on the [JVM argument overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#jvm-argument-overrides) for details on the usage.
properties:
add:
default: []
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ mod tests {
let merged_config = nifi.merged_config(&role, "default").unwrap();
let nodes = nifi.spec.nodes.unwrap();
let (role_java_common_config, role_group_java_common_config) = nodes
.merged_product_specific_common_configs("default")
.get_product_specific_common_configs("default")
.unwrap();

build_bootstrap_conf(
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ pub async fn reconcile_nifi(
let proxy_hosts = get_proxy_hosts(client, nifi, &updated_role_service).await?;

let (role_java_common_config, role_group_java_common_config) = role
.merged_product_specific_common_configs(rolegroup_name)
.get_product_specific_common_configs(rolegroup_name)
.context(GetMergedJvmArgumentOverridesSnafu)?;
let rg_configmap = build_node_rolegroup_config_map(
nifi,
Expand Down

0 comments on commit 6f125a3

Please sign in to comment.