mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 08:22:55 +00:00
Currently it's included with minimal changes and lives aside of the main workspace. Later we may re-use and combine common parts with zenith control_plane. This change is mostly needed to unify cloud deployment pipeline: 1.1. build compute-tools image 1.2. build compute-node image based on the freshly built compute-tools 2. build zenith image So we can roll new compute image and new storage required by it to operate properly. Also it becomes easier to test console against some specific version of compute-node/-tools.
14 lines
247 B
Rust
14 lines
247 B
Rust
//!
|
|
//! Various tools and helpers to handle cluster / compute node (Postgres)
|
|
//! configuration.
|
|
//!
|
|
pub mod config;
|
|
pub mod http_api;
|
|
#[macro_use]
|
|
pub mod logger;
|
|
pub mod monitor;
|
|
pub mod params;
|
|
pub mod pg_helpers;
|
|
pub mod spec;
|
|
pub mod zenith;
|