refactor: SDK core modules — error, config, output, constants

Move foundational modules into sunbeam-sdk. All crate-internal references
remain unchanged since these are sibling modules within the SDK crate.
This commit is contained in:
2026-03-21 14:34:23 +00:00
parent 2ffedb95cb
commit b92700d363
5 changed files with 896 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//! Shared constants used across multiple modules.
pub const GITEA_ADMIN_USER: &str = "gitea_admin";
pub const MANAGED_NS: &[&str] = &[
"data",
"devtools",
"ingress",
"lasuite",
"matrix",
"media",
"monitoring",
"ory",
"storage",
"vault-secrets-operator",
];