Skip to content

Commit 6f087db

Browse files
committed
note on constant paths and the entrypoint script
1 parent 7b08a26 commit 6f087db

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

rust/crd/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ pub mod security;
4040

4141
pub const APP_NAME: &str = "hbase";
4242

43+
// This constant is hard coded in hbase-entrypoint.sh
44+
// You need to change it there too.
4345
pub const CONFIG_DIR_NAME: &str = "/stackable/conf";
4446

4547
pub const TLS_STORE_DIR: &str = "/stackable/tls";

rust/operator-binary/src/hbase_controller.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ pub const MAX_HBASE_LOG_FILES_SIZE: MemoryQuantity = MemoryQuantity {
8989
unit: BinaryMultiple::Mebi,
9090
};
9191

92+
// These constants are hard coded in hbase-entrypoint.sh
93+
// You need to change them there too.
9294
const HDFS_DISCOVERY_TMP_DIR: &str = "/stackable/tmp/hdfs";
9395
const HBASE_CONFIG_TMP_DIR: &str = "/stackable/tmp/hbase";
9496
const HBASE_LOG_CONFIG_TMP_DIR: &str = "/stackable/tmp/log_config";

0 commit comments

Comments
 (0)