Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

### Added

- Add `hbase.rest.hostname`, `hbase.rest.port`, and `hbase.rest.info.port` properties to the restserver `hbase-site.xml` ([#708]).
- Add `hbase.rest.endpoint` property to the restserver `hbase-site.xml` ([#708], [#716]).

[#708]: https://github.com/stackabletech/hbase-operator/pull/708
[#716]: https://github.com/stackabletech/hbase-operator/pull/716

## [25.11.0] - 2025-11-07

Expand Down
12 changes: 2 additions & 10 deletions rust/operator-binary/src/hbase_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -593,16 +593,8 @@ fn build_rolegroup_config_map(
}
HbaseRole::RestServer => {
hbase_site_config.insert(
"hbase.rest.hostname".to_string(),
"${env:HBASE_SERVICE_HOST}".to_string(),
);
hbase_site_config.insert(
"hbase.rest.port".to_string(),
"${env:HBASE_SERVICE_PORT}".to_string(),
);
hbase_site_config.insert(
"hbase.rest.info.port".to_string(),
"${env:HBASE_INFO_PORT}".to_string(),
"hbase.rest.endpoint".to_string(),
"${env:HBASE_SERVICE_HOST}:${env:HBASE_SERVICE_PORT}".to_string(),
);
}
};
Expand Down
Loading