Skip to content

Commit d4549cd

Browse files
Merge branch 'main' into test/hbase-rest-kerberos
2 parents 4bdacb3 + a152f08 commit d4549cd

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44

55
### Added
66

7+
- Add `hbase.rest.hostname`, `hbase.rest.port`, and `hbase.rest.info.port` properties to the restserver `hbase-site.xml` ([#708]).
8+
9+
[#708]: https://github.com/stackabletech/hbase-operator/pull/708
10+
11+
## [25.11.0] - 2025-11-07
12+
13+
## [25.11.0-rc1] - 2025-11-06
14+
15+
### Added
16+
717
- Helm: Allow Pod `priorityClassName` to be configured ([#691]).
818
- Added support for HBase 2.6.3 ([#695]).
919
- Add end-of-support checker ([#697]).

rust/operator-binary/src/hbase_controller.rs

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,20 @@ fn build_rolegroup_config_map(
591591
HBASE_REGIONSERVER_UI_PORT.to_string(),
592592
);
593593
}
594-
HbaseRole::RestServer => {}
594+
HbaseRole::RestServer => {
595+
hbase_site_config.insert(
596+
"hbase.rest.hostname".to_string(),
597+
"${env:HBASE_SERVICE_HOST}".to_string(),
598+
);
599+
hbase_site_config.insert(
600+
"hbase.rest.port".to_string(),
601+
"${env:HBASE_SERVICE_PORT}".to_string(),
602+
);
603+
hbase_site_config.insert(
604+
"hbase.rest.info.port".to_string(),
605+
"${env:HBASE_INFO_PORT}".to_string(),
606+
);
607+
}
595608
};
596609

597610
// configOverride come last

0 commit comments

Comments
 (0)