We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 449e2c9 commit a9de157Copy full SHA for a9de157
1 file changed
rust/operator-binary/src/hbase_controller.rs
@@ -591,7 +591,20 @@ fn build_rolegroup_config_map(
591
HBASE_REGIONSERVER_UI_PORT.to_string(),
592
);
593
}
594
- HbaseRole::RestServer => {}
+ HbaseRole::RestServer => {
595
+ hbase_site_config.insert(
596
+ "hbase.rest.hostname".to_string(),
597
+ "${env:HBASE_SERVICE_HOST}".to_string(),
598
+ );
599
600
+ "hbase.rest.port".to_string(),
601
+ "${env:HBASE_SERVICE_PORT}".to_string(),
602
603
604
+ "hbase.rest.info.port".to_string(),
605
+ "${env:HBASE_INFO_PORT}".to_string(),
606
607
+ }
608
};
609
610
// configOverride come last
0 commit comments