Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- Also listen on the loopback interface so that k8s port-forwards work ([#870]).

[#870]: https://github.com/stackabletech/nifi-operator/pull/870

## [25.11.0] - 2025-11-07

## [25.11.0-rc1] - 2025-11-06
Expand Down
1 change: 0 additions & 1 deletion docs/modules/nifi/pages/getting_started/first_steps.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ The output should show all pods ready:
----
NAME READY AGE
simple-nifi-node-default 2/2 5m
simple-zk-server-default 3/3 7m
----

Congratulations! You successfully created your first NiFi cluster!
Expand Down
8 changes: 8 additions & 0 deletions rust/operator-binary/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,14 @@ pub fn build_nifi_properties(
"nifi.web.https.network.interface.default".to_string(),
"".to_string(),
);
properties.insert(
"nifi.web.https.network.interface.eth0".to_string(),
"eth0".to_string(),
);
properties.insert(
"nifi.web.https.network.interface.lo".to_string(),
"lo".to_string(),
);
properties.insert(
"nifi.web.jetty.working.directory".to_string(),
"./work/jetty".to_string(),
Expand Down
Loading