@@ -78,10 +78,10 @@ use crate::{
7878 } ,
7979 crd:: {
8080 APP_NAME , AnyServiceConfig , Container , HBASE_ENV_SH , HBASE_MASTER_PORT ,
81- HBASE_REGIONSERVER_PORT , HBASE_REST_PORT_NAME_HTTP , HBASE_REST_PORT_NAME_HTTPS ,
82- HBASE_SITE_XML , HbaseClusterStatus , HbaseRole , JVM_SECURITY_PROPERTIES_FILE ,
83- LISTENER_VOLUME_DIR , LISTENER_VOLUME_NAME , SSL_CLIENT_XML , SSL_SERVER_XML , merged_env ,
84- v1alpha1,
81+ HBASE_MASTER_UI_PORT , HBASE_REGIONSERVER_PORT , HBASE_REGIONSERVER_UI_PORT ,
82+ HBASE_REST_PORT_NAME_HTTP , HBASE_REST_PORT_NAME_HTTPS , HBASE_SITE_XML , HbaseClusterStatus ,
83+ HbaseRole , JVM_SECURITY_PROPERTIES_FILE , LISTENER_VOLUME_DIR , LISTENER_VOLUME_NAME ,
84+ SSL_CLIENT_XML , SSL_SERVER_XML , merged_env , v1alpha1,
8585 } ,
8686 discovery:: build_discovery_configmap,
8787 kerberos:: {
@@ -586,6 +586,10 @@ fn build_rolegroup_config_map(
586586 "hbase.master.info.port" . to_string ( ) ,
587587 "${HBASE_INFO_PORT}" . to_string ( ) ,
588588 ) ;
589+ hbase_site_config. insert (
590+ "hbase.master.bound.info.port" . to_string ( ) ,
591+ HBASE_MASTER_UI_PORT . to_string ( ) ,
592+ ) ;
589593 }
590594 HbaseRole :: RegionServer => {
591595 hbase_site_config. insert (
@@ -608,6 +612,10 @@ fn build_rolegroup_config_map(
608612 "hbase.regionserver.info.port" . to_string ( ) ,
609613 "${HBASE_INFO_PORT}" . to_string ( ) ,
610614 ) ;
615+ hbase_site_config. insert (
616+ "hbase.regionserver.bound.info.port" . to_string ( ) ,
617+ HBASE_REGIONSERVER_UI_PORT . to_string ( ) ,
618+ ) ;
611619 }
612620 HbaseRole :: RestServer => { }
613621 } ;
0 commit comments