Merge pull request 'feat: Introducing FailoverTopology and OperatorHub Catalog Subscription with example' (#196) from feat/multisitePostgreSQL into master
Some checks failed
Run Check Script / check (push) Has been cancelled
Compile and package harmony_composer / package_harmony_composer (push) Has been cancelled

Reviewed-on: #196
Reviewed-by: wjro <wrolleman@nationtech.io>
This commit is contained in:
2026-01-06 15:41:12 +00:00
18 changed files with 761 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
pub mod id;
pub mod net;
pub mod storage;
pub mod switch;

View File

@@ -0,0 +1,6 @@
use serde::{Deserialize, Serialize};
#[derive(Copy, Clone, PartialEq, Eq, Hash, Serialize, Deserialize, PartialOrd, Ord, Debug)]
pub struct StorageSize {
size_bytes: u64,
}