Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ All notable changes to this project will be documented in this file.
- test: Bump vector-aggregator to 0.55.0, replace /graphql call with gRPC call ([#940]).
- BREAKING: Removed product-config machinery. This is a breaking change in terms of configuration.
Users relying on the product-config `properties.yaml` file have to set these properties via the CRD ([#945]).
- In case the user specifies a fixed number of NiFi nodes (i.e. no auto-scaling), set `nifi.cluster.flow.election.max.candidates` to that number.
This results in much faster NiFi startups, as it doesn't need to wait for the 5 minutes of `nifi.cluster.flow.election.max.wait.time` ([#953]).

### Fixed

Expand All @@ -38,6 +40,7 @@ All notable changes to this project will be documented in this file.
[#936]: https://github.com/stackabletech/nifi-operator/pull/936
[#940]: https://github.com/stackabletech/nifi-operator/pull/940
[#945]: https://github.com/stackabletech/nifi-operator/pull/945
[#953]: https://github.com/stackabletech/nifi-operator/pull/953
[#959]: https://github.com/stackabletech/nifi-operator/pull/959

## [26.3.0] - 2026-03-16
Expand Down
44 changes: 22 additions & 22 deletions Cargo.lock

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

62 changes: 31 additions & 31 deletions Cargo.nix

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
repository = "https://github.com/stackabletech/nifi-operator"

[workspace.dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.3", features = ["webhook"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.113.4", features = ["webhook"] }

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand All @@ -33,6 +33,6 @@ tokio = { version = "1.52", features = ["full"] }
tracing = "0.1"
url = { version = "2.5.7" }

# [patch."https://github.com/stackabletech/operator-rs.git"]
[patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
18 changes: 9 additions & 9 deletions crate-hashes.json

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

1 change: 0 additions & 1 deletion docs/modules/nifi/assets/attachments/entraid-nifi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ spec:
nifi.security.user.oidc.additional.scopes: "profile"
nifi.security.user.oidc.claim.identifying.user: "upn"
nifi.process.group.root.placeholder: "root"
nifi.cluster.flow.election.max.wait.time: "10 secs"
podOverrides:
spec:
initContainers:
Expand Down
Loading
Loading