- Adds a `deploy_database` function to the `LAMPInterpret` struct to deploy a MariaDB database using Helm. - Integrates `HelmCommand` trait requirement to the `LAMPInterpret` struct. - Introduces `HelmChartScore` to manage MariaDB deployment. - Adds namespace configuration for helm deployments. - Updates trait bounds for `LAMPInterpret` to include `HelmCommand`. - Implements `get_namespace` function to retrieve the namespace.
19 lines
482 B
TOML
19 lines
482 B
TOML
[package]
|
|
name = "example-lamp"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
harmony = { path = "../../harmony" }
|
|
harmony_cli = { path = "../../harmony_cli" }
|
|
harmony_types = { path = "../../harmony_types" }
|
|
cidr = { workspace = true }
|
|
tokio = { workspace = true }
|
|
harmony_macros = { path = "../../harmony_macros" }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
url = { workspace = true }
|