diff --git a/rust/operator-binary/src/hbase_controller.rs b/rust/operator-binary/src/hbase_controller.rs index 189281c5..97f022fc 100644 --- a/rust/operator-binary/src/hbase_controller.rs +++ b/rust/operator-binary/src/hbase_controller.rs @@ -894,6 +894,11 @@ fn build_rolegroup_statefulset( create_vector_shutdown_file_command(STACKABLE_LOG_DIR), }]) .add_env_vars(merged_env) + // Needed for the `containerdebug` process to log it's tracing information to. + .add_env_var( + "CONTAINERDEBUG_LOG_DIRECTORY", + format!("{STACKABLE_LOG_DIR}/containerdebug"), + ) .add_volume_mount("hbase-config", HBASE_CONFIG_TMP_DIR) .context(AddVolumeMountSnafu)? .add_volume_mount("hdfs-discovery", HDFS_DISCOVERY_TMP_DIR)